1.

What are the dynamic management views and share any 5 that you are using on a regular basis?

Answer»

The DMV (Dynamic Management Views) is a set of system views introduced with SQL Server 2005. DMV’s are a new tool of DBA to get internal INFORMATION of the system and it’s working.

  • sys.dm_exec_query_stats
  • sys.dm_exec_sql_text
  • sys.dm_os_buffer_descriptors
  • sys.dm_tran_locks - Locking and blocking
  • sys.dm_os_wait_stats - WAIT stats
  • sys.dm_exec_requests Percentage – For Percentage COMPLETE for a process
  • Sys.dm_exec_sessions


Discussion

No Comment Found