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_tab_scan_sta.sql
REM
REM TAB STATS
REM
REM Author:
REM Vitaliy Mogilevskiy
REM VMOGILEV
REM (www.dbatoolz.com)
REM
REM Purpose:
REM
REM Reports SYSTEM wide table scan stats
REM
REM
REM Usage:
REM s_tab_scan_sta.sql
REM
REM Example:
REM s_tab_scan_sta.sql
REM
REM
REM History:
REM 08-01-1998 VMOGILEV Created
REM
REM
select name
, value
from v$sysstat
where name like '%table scans%'
/