exam questions

Exam 70-764 All Questions

View all questions & answers for the 70-764 exam

Exam 70-764 topic 1 question 135 discussion

Actual exam question from Microsoft's 70-764
Question #: 135
Topic #: 1
[All 70-764 Questions]

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 instance.
What should you include in the recommendation? More than one answer choice may achieve the goal. Select the BEST answer.

  • A. The SQL Server error log
  • B. The sys.dm_os_wait_stats dynamic management view
  • C. The DBCC SQLPERF(WAITSTATS) command
  • D. SQL Server Profiler
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️
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.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
TheSwedishGuy
5 years, 6 months ago
Tricky question, since sys.dm_os_wait_stats displays way more than just the 10 most common waits encountered.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...