Is there a backend table like plan_table where we can see the output of autotrace, similar to explain plan output? Like if I am running a long query with autotrace and by chance, the session gets logged off while reading the autotrace output and I want to see again the autotrace output without running the long query.
Is there a backend table like plan_table?
71 Views Asked by general46 At
1
There are 1 best solutions below
Related Questions in ORACLE
- Column displays each count
- MAX and GROUP BY - SQL
- Best Practice for adding columns to a Table in Oracle database
- Updating an Oracle row with value from same row
- Retrieving data from Oracle database
- Ibatis execute update sql on oracle, it is not working and no exceptions
- Building an sql execution plan history
- Implementation of Rank and Dense Rank in MySQL
- how to update the date field for this specific condition using oracle query?
- Oracle stored procedure wrapping compile error with inline comments
- Android: How to connect oracle database using Android Java code?
- SQL Conditional Join on Columns
- Multi value wildcard search in ibatis
- Get count of consecutive days meeting a given criteria
- How to update the metadata of a layer in Oracle imported through FME Workbench?
Related Questions in DATABASE-PERFORMANCE
- Big data with spatial queries/indexing
- Do I have to drop the primary key or reload the table data for partitioning in MySQL InnoDB?
- SQL Server Query Performance with a lot of data
- Best practices of commit() when inserting many rows
- Optimize mysql query that take long execution time about 4 minutes
- Compare multi values against multi values, maintaining performance
- DB Index not being called
- SQL Server Indexes for multiple searchable fields
- Scaling MySQL database, increasing performance to many connections
- Reducing database calls
- Fastest way to delete millions of registers in sql server
- SQL Server job failed due to space issues
- Read or update quickly hundred millions of relations on Solr
- Exact same query and database. In production more than 100x slower
- Database bottleneck identification using jmeter
Related Questions in DATABASE-ADMINISTRATION
- Windows Authentication - Restrict SQL Server Backend Access
- who writes a DDL - DBA or the developer using the table
- Selecting ticketid with status history
- Oracle DB: delete all the contents
- How to create a "live" feed for two seperate Postgres Instances?
- grant to multiple db using one command
- what is the correct format of a column for store UTC date time
- how to schedule a job on Oracle SQL developer to execute shell command "Java -Jar /Home/JavaFile.jar" each one minute?
- Any ideas on why this query would run so slow?
- Attempting insertion into the row version column "SSMA_TimeStamp". Cannot insert into a row version column
- MongoDB command `compact` is not working
- Can we do table partition in SQL Server 2012 Standard Edition
- query that shows if the tables might need analyze and vacuum
- How to extractvalue of table counts using xml in DB2? (see working Oracle equivalent)
- Data Export of SQL Server table from one server to another / Data Flow task error
Related Questions in SQLPERFORMANCE
- TVF is much slower when using parameterized query
- Performance of SQL code
- Need a MySQL JOIN to return all categories a product is in, per product, even if only one category is searched for
- Any ideas on why this query would run so slow?
- How to force MySQL "Using index for group-by"
- SQL Server : Geography search performance - query nearest stores
- Index on join and where
- SQL Server query is very slow when number of items inside IN clause more than 4
- MySQL doesn't use entire index when combining join and range
- Performance issue with SQL Server and XML datatype columns
- Checking variable for NULL kills performance
- MySQL - does log record the deleted query of a parent-child table?
- Insert query taking time to load the data into a table in Oracle
- Finding the slow stored procedures from a Trace file
- mysql very high cpu usage
Related Questions in SQL-TUNING
- MySQL Query for timetable information
- SQL query tuning issue
- Sql Server strange execution plan choices
- index skip scan for 2 value in where clause for second column
- Oracle SQL Index DATE vs Index TRUNC(DATE)
- Tuning Oracle SQL having NOT EXIST clause
- How to efficiently maintain daily stock for more than 1000 products in MySQL?
- Query runs slow in one dataset, but faster in another bigger dataset; MSSQL server; Different execution plan. Why?
- Can SQL Developer SQL Tuning Advisor bind variables be null?
- SQL Developer SQL Tuning Advisor not all variables bound
- Tuning SQL Select
- Cast/Convert nvarchar to datetime(2)
- Cast/Convert nvarchar to datetime
- Tuning up a SQL query, (query optimization)
- Tuning SQL Query which returns REF CURSOR
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
No, what we do is we check the before and after session stats coming out of v$sesstat.
Options:
Check V$SQLSTATS which contains some metrics for sql execution. This also gives the SQL_ID for this query, which leads to
You might be able to glean some information from v$active_session_history if you are licensed for it using the SQL_ID
You can run a SQL Monitoring report (see DBMS_SQLTUNE) with the SQL_ID you got from (1). This information lingers for a while in memory.