Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: is there any way to get the view definition after creating the view?

Re: is there any way to get the view definition after creating the view?

From: Ashish <srivastava.ashish_at_gmail.com>
Date: 16 Feb 2006 01:07:21 -0800
Message-ID: <1140080841.125473.150370@o13g2000cwo.googlegroups.com>


query the all/dba/user_view table.

set long 10000
SELECT text
from user_view
where name = '<view name>' ;

Ashish Received on Thu Feb 16 2006 - 03:07:21 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US