Database Memory & 4030/4031 (MOSC)

MOSC Banner

Oracle server is using more than 7 GB of ram.

edited Feb 2, 2010 2:37AM in Database Memory & 4030/4031 (MOSC) 5 commentsAnswered
  Hello,

 

I am facing one problem relating to physical memory utilization on database server.

My operating system is window server 2003 r2 standard x64 edition with service pack 2 and total physical ram on this server is 8 GB and oracle version is 10.2.0.4.

 

I have run below query on my database to find how much memory is used by oracle database.

SQL>  select nvl(d

  2  ,'Total Memory Usage....') "Mem Type"

  3   ,round(sum(b) / 1024 / 1024) "MB"

  4   from (select 'System Global Area:' d

  5   ,sum(bytes) b

  6   from v$sgastat

  7   union all

  8   select 'Program Global Area:' d

  9   ,value b

 10   from v$pgastat

 11   where name = 'total PGA allocated') s

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center