Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536.1K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.6K Security Software
Full Table Scan queries history

Haytham Mostafa
Member Posts: 70 Blue Ribbon
Hello,
Is there a way to find the history of the queries which performed full table scan recently or in specific date ?
Thanks
Comments
-
Hi,
You can make use of v$sql_plan or dba_hist_sql_plan views to figure out the queries performed FTS.
select * from dba_hist_sql_plan where operation = 'TABLE ACCESS' and options = 'FULL';
Thanks!
-
Note that use of dba_hist_sql_plan requires additional licensing.