Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. SELECT total_physical_memory_kb/1024 AS [Physical Memory (MB)],
  2. available_physical_memory_kb/1024 AS [Available Memory (MB)],
  3. total_page_file_kb/1024 AS [Total Page File (MB)],
  4. available_page_file_kb/1024 AS [Available Page File (MB)],
  5. system_cache_kb/1024 AS [System Cache (MB)],
  6. system_memory_state_desc AS [System Memory State]
  7. FROM sys.dm_os_sys_memory WITH (NOLOCK) OPTION (RECOMPILE);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement