Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Pantea.
Asked: January 24, 2022 - 6:42 pm UTC
Last updated: January 25, 2022 - 7:17 am UTC
Version: 11g,r2
Viewed 1000+ times
select t2.n1, t1.n2 from t2,t1 where t2.n2 = 45 and t2.n1 = t1.n1 ;
------------------------------------------------------------------------------------------------- | Id | Operation | Name | Starts | E-Rows | A-Rows | A-Time | Buffers | ------------------------------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | | 225 |00:00:00.01 | 3048 | | 1 | NESTED LOOPS | | 1 | 225 | 225 |00:00:00.01 | 3048 | | 2 | NESTED LOOPS | | 1 | 225 | 225 |00:00:00.01 | 3038 | |* 3 | TABLE ACCESS BY INDEX ROWID| T2 | 1 | 15 | 15 |00:00:00.01 | 3013 | | 4 | INDEX FULL SCAN | T2_I1 | 1 | 3000 | 3000 |00:00:00.01 | 13 | |* 5 | INDEX RANGE SCAN | T1_I1 | 15 | 15 | 225 |00:00:00.01 | 25 | | 6 | TABLE ACCESS BY INDEX ROWID | T1 | 225 | 15 | 225 |00:00:00.01 | 10 | ------------------------------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 3 - filter("T2"."N2"=45) 5 - access("T2"."N1"="T1"."N1")
Get all the information about database performance in the Database Performance guide.