1753936 Members
9903 Online
108811 Solutions
New Discussion юеВ

Re: Oracle and memory

 
SOLVED
Go to solution
TwoProc
Honored Contributor

Re: Oracle and memory

Having actually used A. Clay's "whackball thought" as a strategy - I recommend it highly because it either a) works really well b/c developers take it to heart or b) drives the developers nuts.

Either way, it's a big win!

:-)
We are the people our parents warned us about --Jimmy Buffett

Re: Oracle and memory

Thanks for the help all. I really appreciate all the feedback.
Eric Antunes
Honored Contributor

Re: Oracle and memory

Hi Stafford,

The MINIMUM Shared Pool is calculated by this formula:

select sum(sharable_mem) from v$db_object_cache; -- Sharable Objects

+

select sum(sharable_mem) from v$sqlarea where executions > 5; -- Sharable SQL

+

select sum(250 * users_opening) from v$sqlarea; -- Cursors

+

20-30% Overhead

= ...


Best Regards,

Eric Antunes
Each and every day is a good day to learn.