Last active
November 3, 2017 09:50
-
-
Save davidhooey/6629359 to your computer and use it in GitHub Desktop.
Oracle Execution Plan for SQL_ID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Shared Pool | |
select * from table(dbms_xplan.display_cursor('SQL_ID',null,'ALL')); | |
-- AWR | |
select * from table(dbms_xplan.display_awr('SQL_ID',null,null,'ALL')); | |
select * from table(dbms_xplan.display_awr('SQL_ID',null,DBID,'ALL')); |
I assume you're asking for which utility to determine SQL_IDs. Oracle Enterprise Manager will give you the SQL_ID or an AWR report will also.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what all utility which can give recommendation for specific sql_id or query.