Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.38 KB

sql-server-clr-object.md

File metadata and controls

35 lines (28 loc) · 1.38 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
SQL Server, CLR object
Learn about the SQLServer:CLR object, which provides counters to monitor common language runtime execution in Microsoft SQL Server.
MikeRayMSFT
mikeray
12/04/2023
sql
performance
reference
SQLServer:CLR
CLR object [SQL Server]

SQL Server, CLR object

[!INCLUDE SQL Server] The SQLServer:CLR object provides counters to monitor common language runtime (CLR) execution in [!INCLUDE msCoName] [!INCLUDE ssNoVersion].

The following table describes the [!INCLUDE ssNoVersion] 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%';

Related content