Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Utilisation ratio for an index
That's really interesting. Since if I select against someone elses
table, it will use their index, I wonder what the idea was behind
restricting it to the owner?
SQL> connect system
Enter password:
Connected.
SQL> set autotrace on explain
SQL> select /*+ index(t0406 t0406_i) */ * from rep.t0406 where c =
5000;
C
5000
Execution Plan
|
Predicate Information (identified by operation id):
1 - access("C"=5000)
Note
SQL> Thanks!
Steve Received on Fri Apr 07 2006 - 10:08:59 CDT