This article is half-done without your Comment! *** Please share your thoughts via Comment ***
In this post, I am sharing a SQL Script to find all the list of Dynamic Management Views and Functions in SQL Server 2008.
The Dynamic Management Views and Functions are very important to monitor and troubleshoot different database activity.
Most of the DBA only aware about few DMV and DMF but using this script you can find all available DMV and DMF of your SQL Server.
Below is a script
1 2 3 4 5 6 7 |
SELECT name ,type ,type_desc FROM sys.system_objects WHERE name LIKE 'dm[_]%' ORDER BY name |