REM
REM DBAToolZ NOTE:
REM This script was obtained from DBAToolZ.com
REM It's configured to work with SQL Directory (SQLDIR).
REM SQLDIR is a utility that allows easy organization and
REM execution of SQL*Plus scripts using user-friendly menu.
REM Visit DBAToolZ.com for more details and free SQL scripts.
REM
REM
REM File:
REM s_sga_buffer_pool.sql
REM
REM SGA
REM
REM Author:
REM Vitaliy Mogilevskiy
REM VMOGILEV
REM (vit100gain@earthlink.net)
REM
REM Purpose:
REM
REM reports buffer pool from v$buffer_pool
REM
REM
REM Usage:
REM s_sga_buffer_pool.sql
REM
REM Example:
REM s_sga_buffer_pool.sql
REM
REM
REM History:
REM 08-01-1998 VMOGILEV Created
REM
REM
column id format 90
column lo_setid format 9990 heading "LOID"
column hi_setid format 9990 heading "HIID"
column set_count format 990 heading "SETCNT"
ttitle off
btitle off
select
id
,name
,lo_setid
,hi_setid
,set_count
,buffers
,lo_bnum
,hi_bnum
from v$buffer_pool
;