Skip to content

Latest commit

 

History

History
65 lines (53 loc) · 4.28 KB

File metadata and controls

65 lines (53 loc) · 4.28 KB
title sys.dm_os_memory_cache_clock_hands (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 08/18/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
sys.dm_os_memory_cache_clock_hands_TSQL
dm_os_memory_cache_clock_hands
dm_os_memory_cache_clock_hands_TSQL
sys.dm_os_memory_cache_clock_hands
dev_langs
TSQL
helpviewer_keywords
sys.dm_os_memory_cache_clock_hands dynamic management view
ms.assetid 0660eddc-691c-425f-9d43-71151d644de7
caps.latest.revision 37
author JennieHubbard
ms.author jhubbard
manager jhubbard

sys.dm_os_memory_cache_clock_hands (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

Returns the status of each hand for a specific cache clock.

Note

To call this from [!INCLUDEssSDWfull] or [!INCLUDEssPDW], use the name sys.dm_pdw_nodes_os_memory_cache_clock_hands.

Column name Data type Description
cache_address varbinary(8) Address of the cache associated with the clock. Is not nullable.
name nvarchar(256) Name of the cache. Is not nullable.
type nvarchar(60) Type of cache store. There can be several caches of the same type. Is not nullable.
clock_hand nvarchar(60) Type of hand. This is one of the following:

External

Internal

Is not nullable.
clock_status nvarchar(60) Status of the clock. This is one of the following:

Suspended

Running

Is not nullable.
rounds_count bigint Number of sweeps made through the cache to remove entries. Is not nullable.
removed_all_rounds_count bigint Number of entries removed by all sweeps. Is not nullable.
updated_last_round_count bigint Number of entries updated during the last sweep. Is not nullable.
removed_last_round_count bigint Number of entries removed during the last sweep. Is not nullable.
last_tick_time bigint Last time, in milliseconds, that the clock hand moved. Is not nullable.
round_start_time bigint Time, in milliseconds, of the previous sweep. Is not nullable.
last_round_start_time bigint Total time, in milliseconds, taken by the clock to complete the previous round. Is not nullable.
pdw_node_id int Applies to: [!INCLUDEssSDWfull], [!INCLUDEssPDW]

The identifier for the node that this distribution is on.

Permissions

On [!INCLUDEssNoVersion_md], requires VIEW SERVER STATE permission.
On [!INCLUDEssSDS_md] Premium Tiers, requires the VIEW DATABASE STATE permission in the database. On [!INCLUDEssSDS_md] Standard and Basic Tiers, requires the Server admin or an Azure Active Directory admin account.

Remarks

[!INCLUDEssNoVersion] stores information in memory in a structure called a memory cache. The information in the cache can be data, index entries, compiled procedure plans, and a variety of other types of [!INCLUDEssNoVersion] information. To avoid re-creating the information, it is retained the memory cache as long as possible and is ordinarily removed from the cache when it is too old to be useful, or when the memory space is needed for new information. The process that removes old information is called a memory sweep. The memory sweep is a frequent activity, but is not continuous. A clock algorithm controls the sweep of the memory cache. Each clock can control several memory sweeps, which are called hands. The memory-cache clock hand is the current location of one of the hands of a memory sweep.

See Also

SQL Server Operating System Related Dynamic Management Views (Transact-SQL)