Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Available Physical Memory:

select round((USED_PHYSICAL_MEMORY + FREE_PHYSICAL_MEMORY) /1024/1024/1024, 2) as


"Physical Memory GB" from PUBLIC.M_HOST_RESOURCE_UTILIZATION;

Linux command:

cat /proc/meminfo | grep MemTotal

Free Physical Memory:

select round(FREE_PHYSICAL_MEMORY/1024/1024/1024, 2) as "Free Physical GB" from


PUBLIC.M_HOST_RESOURCE_UTILIZATION;

You might also like