If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > Unable to view full VIEW definition

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-22-03, 07:09
naag007 naag007 is offline
Registered User
 
Join Date: Jun 2003
Posts: 7
Angry Unable to view full VIEW definition

Hi,

I want to see text definition for a view defined in my schema. When I queried like this I am getting only 80 chars from definition. How to view it fully?? (Oracle version 8.1.7)

SQL> select text from user_views where view_name='PA_TASKS_AMG_V';

TEXT
--------------------------------------------------------------------------------
select task_id, carrying_out_organization_id, service_type_code, project_id, tas

thanks in advance
Raju
Reply With Quote
  #2 (permalink)  
Old 07-22-03, 07:20
sjacek sjacek is offline
Registered User
 
Join Date: May 2003
Location: Dublin, Ireland
Posts: 44
Re: Unable to view full VIEW definition

Use 'set long nnn' sqlplus command to specify length of the output (nnn characters).
As a default Oracle uses 80 for LONG fields thats why your text gets truncated.

Quote:
Originally posted by naag007
Hi,

I want to see text definition for a view defined in my schema. When I queried like this I am getting only 80 chars from definition. How to view it fully?? (Oracle version 8.1.7)

SQL> select text from user_views where view_name='PA_TASKS_AMG_V';

TEXT
--------------------------------------------------------------------------------
select task_id, carrying_out_organization_id, service_type_code, project_id, tas

thanks in advance
Raju
Reply With Quote
  #3 (permalink)  
Old 07-22-03, 08:02
naag007 naag007 is offline
Registered User
 
Join Date: Jun 2003
Posts: 7
Thanks a lot..sjacek. Now I am able to view it fully
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On