70-465 · Question #4
You are designing a monitoring application for a new SQL Server 2014 instance. You need to recommend a solution to generate a report that displays the 10 most frequent wait types that occur for the…
The correct answer is B. The sys.dm_os_wait_stats dynamic management view. sys.dm_os_wait_stats Returns information about all the waits encountered by threads that executed. You can use this aggregated view to diagnose performance issues with SQL Server and also with specific queries and batches. Columns include: waiting_tasks_count Number of waits on…
Question
Options
- AThe SQL Server error log
- BThe sys.dm_os_wait_stats dynamic management view
- CThe DBCC SQLPERF(WAITSTATS) command
- DSQL Server Profiler
How the community answered
(30 responses)- A3% (1)
- B93% (28)
- D3% (1)
Explanation
sys.dm_os_wait_stats Returns information about all the waits encountered by threads that executed. You can use this aggregated view to diagnose performance issues with SQL Server and also with specific queries and batches. Columns include: waiting_tasks_count Number of waits on this wait type. This counter is incremented at the start of each wait.
Topics
Community Discussion
No community discussion yet for this question.