Databases usually optimize queries before executing them. For a query issued using JDBC or a command line client is it possible to see the actual optimized query that was executed by the database. I am using Oracle Database.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I think you misunderstand - the EXPLAIN PLAN shows you a summarization of what the optimizer sees, not a defacto query:
What decisions the optimizer makes, are based on statistics on the tables involved and any indexes. Refreshing statistics can dramatically change if things have changed enough. |
|||||||||||||||||
|