Operating System - HP-UX
1751720 Members
6147 Online
108781 Solutions
New Discussion

Re: How to determine memory used

 
SOLVED
Go to solution
MANOJ SRIVASTAVA
Honored Contributor

Re: How to determine memory used

Thanx Scot


Manoj
Brian Crabtree
Honored Contributor

Re: How to determine memory used

If you are looking for the amount of memory Oracle is currently using, you can query the database in the v$sga view from system or internal.

To calculate the space taken up by the database yourself, do this:

shared_pool_size+log_buffer+
(db_block_buffers*db_block_size)

This will give you a good approximation of the size of the database itself.