Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DDL for VIEW

Status
Not open for further replies.

saira78

Technical User
Jan 14, 2003
40
CA
How would you go about finding how a view was created if you weren't the one creating it?

I have to alter a view but I can't without information about the original view.

Thanks,
Saira
 
Using ALL_VIEWS I can extract the TEXT column, however, it will only display the first x number of characters like this:

TEXT
--------------------------------------------------------------------------------
(
SELECT A.WHSE_CODE,A.ITEM_NUM,B.LAST_COST FROM ITEM_W A,(SELECT DISTINCT (LAST

How do I go about getting the rest of the view definition?

Thanks all,
Saira
 
Silly me.

SQL> set LONG <anynumber>
SQL> <execute your select>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top