My problem is that I have a custom SQL runner that got into Oracle, read-only.
I want to get a view definition.
select TEXT FROM all_VIEWS and VIEW_NAME = '<view_name>';
This returns me limited text. The maximum number of characters is possibly 100. All representations are longer than this.
The help file I found showed the addition of 'set long 10000' before capturing the entire field that I assume.
SQL> set long 10000 SQL> select TEXT 2 FROM all_VIEWS 3 and VIEW_NAME = '<view_name>';
I do not have access to get into set long 10000 , since I am launching another window. Is there any other way to get a complete definition with my disabilities?
source share