Click to See Complete Forum and Search --> : Instance size


ampearce
11-06-2000, 11:52 AM
Hi,

Im sure this is an easy one for an experienced dba, but i need to find the size of an instance, ive looked at v$sga this tells me fixed size, variable size, database buffers, redo buffers but i do not know if this is enough, is there a query i can do to get a reasonable indication of the size of an instance?

Thanks
Aidan.

Halo
11-06-2000, 12:02 PM
Check:
1. buffer cache hit ratio
2. library cache hit ratio
3. ratio of sorts in memory to disk
The higher the values, the better. If they are low, consider increasing the repective parameters in init.ora. You should be able to find these scripts in the DBA HAndbook.

tamilselvan
11-06-2000, 12:09 PM
V$SGASTAT will give more info.

rcaballe
11-06-2000, 01:00 PM
In NT you should add bytes for each connection, ORACLE.EXE gets bigger and bigger.

maachan
11-07-2000, 08:57 AM
in SVRMGRL do
show sga

that will give you total size of SGA as well as the variable size, fixed size etc that you saw in V$SGA.

Hope this is what you're looking for.

ampearce
11-07-2000, 09:04 AM
Thats great, thanks everyone, especially maachan, youve all been very helpful.