RE: views on views on views
Date: Fri, 27 Mar 2009 19:26:21 +0400 (GST)
Message-ID: <28567910.28671238167807262.JavaMail.seven_at_aomfe2p1>
this is cool. thanks!
Amar
Www.amar-Padhi.com
-original message-
RE: views on views on views
From: "Tanel Poder" <tanel_at_poderc.com>
Date: 27-03-2009 19:10
Here's a little technical detail I've found very useful with Oracle 10.2 when troubleshooting bad plans through views on views on views.
In 10.2 you can set _dump_qbc_tree=1 and hard parse the query against the view. This will dump you the parsed query block tree into tracefile - with objects resolved all the way to the base tables (so you'll *see* through the views easily, without needing to manually parse this stuff in your head).
So if you do this:
SQL> create view myview as select * from all_users;
View created.
And query this:
SQL> select count(*) from myview;
COUNT(*)
31
The _dump_qbc_tree gives you following "SQL" against base tables:
- ACTION NAME:() 2007-09-16 12:19:57.500
- MODULE NAME:(SQL*Plus) 2007-09-16 12:19:57.500
- SERVICE NAME:(SYS$USERS) 2007-09-16 12:19:57.500
- SESSION ID:(146.1984) 2007-09-16 12:19:57.500 QCSDMP: ------------------------------------------------------- QCSDMP: SELECT: (qbc=2B8D1C28) QCSDMP: . (COUNT(*)) (opntyp=2 opndty=0) QCSDMP: FROM: QCSDMP: .MYVIEW QCSDMP: VQB: QCSDMP: SELECT: (qbc=2B8D163C) QCSDMP: .USERNAME QCSDMP: FROM: QCSDMP: .ALL_USERS QCSDMP: VQB: QCSDMP: SELECT: (qbc=2B8CAF78) QCSDMP: U.NAME (USERNAME) QCSDMP: FROM: QCSDMP: SYS.TS$ (TTS) QCSDMP: SYS.TS$ (DTS) QCSDMP: SYS.USER$ (U)
I once wrote an article about it too:
http://blog.tanelpoder.com/2007/09/16/how-to-resolve-sql-object-and-column-n ames-all-the-way-to-base-tables-and-columns-in-oracle/
-- Regards, Tanel Poder http://blog.tanelpoder.com Oracle Certified Master Oracle ACE Director OakTable Network Member -- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Fri Mar 27 2009 - 10:26:21 CDT