Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How to get whole text from DBA_VIEWS?
Frank <fbortel_at_nescape.net> wrote:
>NoName wrote:
>
>>>In SqlPLus:
>>>
>>>set LONG 1000
>>>select text from DBA_VIEWS where owner='myowner' and view_name='myview';
>>
>>
>> Ahh, I was missing the SET LONG command!!
>> So, since the DBA_VIEWS has a column with the text length, using SET LONG
>> with the value in that column...
>>
>> Well, thank you, and happy Xmas holydays, to you and everybody here in this
>> newsgroup!
>>
>> Best Regards
>>
>>
>Ehhh - no, actually the text is stored in a datatype LONG
>column.
You can use the technique NoName used:
TEXT_LENGTH
160
SQL> set long 160
SQL> select text from all_views where view_name = 'QWHAP_VENDOR_NAME_V';
TEXT
SQL>
Just enough chars allocated to hold the text. Received on Fri Dec 19 2003 - 13:22:36 CST
![]() |
![]() |