0% found this document useful (0 votes)
81 views2 pages

Sga Size

The summary shows the output from querying v$sga and v$sga_dynamic_components to view the configuration and usage of the System Global Area (SGA) for an Oracle database instance. The total SGA size is 1258291200 bytes, composed of fixed space, variable space including the shared pool and buffer cache, and redo buffers. The v$sga_dynamic_components output lists the current sizes of different SGA components like the shared pool, large pool, java pool, and default buffer cache.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views2 pages

Sga Size

The summary shows the output from querying v$sga and v$sga_dynamic_components to view the configuration and usage of the System Global Area (SGA) for an Oracle database instance. The total SGA size is 1258291200 bytes, composed of fixed space, variable space including the shared pool and buffer cache, and redo buffers. The v$sga_dynamic_components output lists the current sizes of different SGA components like the shared pool, large pool, java pool, and default buffer cache.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

SQL> startup

ORACLE instance started.

Total System Global Area 1258291200 bytes

Fixed Size 1978336 bytes

Variable Size 318771232 bytes

Database Buffers 922746880 bytes

Redo Buffers 14794752 bytes

Database mounted.

Database opened.

SQL> select * from v$sga;


NAME VALUE

-------------------- ----------

Fixed Size 1978336

Variable Size 318771232

Database Buffers 922746880

Redo Buffers 14794752

The output from this query shows that the total size of the SGA is
1258291200 bytes. This total size is composed of the variable space that is
composed of the Shared Pool, the Large Pool, and the Java Pool (318771232
bytes), the Database Buffer Cache (922746880 bytes), the Redo Log Buffer
(14794752 bytes), and some additional space (1978336 bytes) that stores
information used by the instance’s background processes.

SQL> select component,current_size from


v$sga_dynamic_components;
COMPONENT CURRENT_SIZE
---------------------------------------------------------------- ------------

shared pool 285212672

large pool 16777216

java pool 16777216

streams pool 0

DEFAULT buffer cache 922746880

KEEP buffer cache 0

RECYCLE buffer cache 0

DEFAULT 2K buffer cache 0

DEFAULT 4K buffer cache 0

DEFAULT 8K buffer cache 0

DEFAULT 16K buffer cache 0

COMPONENT CURRENT_SIZE

--------------------------------------------------------- ------------

DEFAULT 32K buffer cache 0

ASM Buffer Cache 0

13 rows selected.

SQL>

You might also like