Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.46 KB

sql-server-cursor-manager-total-object.md

File metadata and controls

38 lines (30 loc) · 1.46 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
SQL Server, Cursor Manager Total object
Learn about the SQLServer:Cursor Manager Total object, which provides counters to monitor cursors in SQL Server.
MikeRayMSFT
mikeray
12/04/2023
sql
performance
reference
SQLServer:Cursor Manager Total
Cursor Manager Total object

SQL Server, Cursor Manager Total object

[!INCLUDE SQL Server]

The SQLServer:Cursor Manager Total object provides counters to monitor cursors.

This table describes the SQL Server Cursor Manager Total counters.

Cursor Manager Total counters Description
Async population count Number of cursors being populated asynchronously.
Cursor conversion rate Number of cursor conversions per second.
Cursor flushes Total number of run-time statement recreations by cursors.

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 '%Cursor Manager Total%';

Related content