christo83
SSC-Addicted
Points: 415
More actions
July 3, 2013 at 11:58 pm
#395084
Hi
How do i find out free Physical Memory using sqlserver query
Andrew G
SSChampion
Points: 12809
July 4, 2013 at 12:17 am
#1629740
If you mean the OS free physical RAM, then
SELECT total_physical_memory_kb, available_physical_memory_kb,
total_page_file_kb, available_page_file_kb,
system_memory_state_desc
FROM sys.dm_os_sys_memory WITH (NOLOCK) OPTION (RECOMPILE);
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply