|
| Re: if RULE BASE exists in 11G [message #297501 is a reply to message #297499] |
Fri, 01 February 2008 02:54   |
Michel Cadot Messages: 35462 Registered: March 2007 Location: Nanterre, France, http://... |
Senior Member Account Moderator |
|
|
Yes.
SQL> @v
Version Oracle : 11.1.0.6.0
SQL> set autotrace traceonly explain
SQL> select /*+ RULE */ * from t;
Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873
----------------------------------
| Id | Operation | Name |
----------------------------------
| 0 | SELECT STATEMENT | |
| 1 | TABLE ACCESS FULL| T |
----------------------------------
Note
-----
- rule based optimizer used (consider using cbo)
But should you use it? No.
Regards
Michel
|
|
|
|
|