Find out free physical memory

  • Hi

    How do i find out free Physical Memory using sqlserver query

  • 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