SQL Server, CLR object
Applies to: SQL Server
The SQLServer:CLR object provides counters to monitor common language runtime (CLR) execution in Microsoft SQL Server.
The following table describes the SQL Server CLR counters.
CLR counters | Description |
---|---|
CLR Execution | Total execution time in CLR (microseconds) |
Example
You begin to explore the query performance counters in this object using this T-SQL query on the sys.dm_os_performance_counters dynamic management view:
SELECT * FROM sys.dm_os_performance_counters
WHERE object_name LIKE '%CLR%';