Skip to content

Latest commit

 

History

History
67 lines (56 loc) · 4.35 KB

File metadata and controls

67 lines (56 loc) · 4.35 KB
title sys.dm_os_sys_memory (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/15/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
dm_os_sys_memory
sys.dm_os_sys_memory_TSQL
sys.dm_os_sys_memory
dm_os_sys_memory_TSQL
dev_langs
TSQL
helpviewer_keywords
sys.dm_os_sys_memory dynamic management view
ms.assetid 1ca58814-1caa-44c1-b307-ff0bdcbbef62
caps.latest.revision 15
author JennieHubbard
ms.author jhubbard
manager jhubbard

sys.dm_os_sys_memory (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-asdw-pdw_md]

Returns memory information from the operating system.

[!INCLUDEssNoVersion] is bounded by, and responds to, external memory conditions at the operating system level and the physical limits of the underlying hardware. Determining the overall system state is an important part of evaluating [!INCLUDEssNoVersion] memory usage.

Note

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

Column name Data type Description
total_physical_memory_kb bigint Total size of physical memory available to the operating system, in kilobytes (KB).
available_physical_memory_kb bigint Size of physical memory available, in KB.
total_page_file_kb bigint Size of the commit limit reported by the operating system in KB
available_page_file_kb bigint Total amount of page file thatis not being used, in KB.
system_cache_kb bigint Total amount of system cache memory, in KB.
kernel_paged_pool_kb bigint Total amount of the paged kernel pool, in KB.
kernel_nonpaged_pool_kb bigint Total amount of the nonpaged kernel pool, in KB.
system_high_memory_signal_state bit State of the system high memory resource notification. A value of 1 indicates the high memory signal has been set by Windows. For more information, see CreateMemoryResourceNotification in the MSDN library.
system_low_memory_signal_state bit State of the system low memory resource notification. A value of 1 indicates the low memory signal has been set by Windows. For more information, see CreateMemoryResourceNotification in the MSDN library.
system_memory_state_desc nvarchar(256) Description of the memory state. See the table below.
pdw_node_id int Applies to: [!INCLUDEssSDWfull], [!INCLUDEssPDW]

The identifier for the node that this distribution is on.
Condition Value
system_high_memory_signal_state = 1

and

system_low_memory_signal_state = 0
Available physical memory is high
system_high_memory_signal_state = 0

and

system_low_memory_signal_state = 1
Available physical memory is low
system_high_memory_signal_state = 0

and

system_low_memory_signal_state = 0
Physical memory usage is steady
system_high_memory_signal_state = 1

and

system_low_memory_signal_state = 1
Physical memory state is transitioning

The high and low signal should never be on at the same time. However, rapid changes at the operating system level can cause both values to appear to be on to a user mode application. The appearance of both signals being on will be interpreted as a transition state.

Permissions

Requires VIEW SERVER STATE permission on the server.

See Also

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