Oracle Database Administration
Database Tips
Wednesday, November 3, 2010
Find SQLs doing Full Table Scans
select sql_id,sql_text from dba_hist_sqltext
where sql_id in (select distinct SQL_ID from dba_hist_sql_plan where object_owner='SCOTT'
and OPERATION = 'TABLE ACCESS' and OPTIONS = 'FULL')
/
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment