I have some queries to find out the ddl of some objects from a schema. The result columns I am getting are truncated in the middle of the queries.
How can I increase the
What I use:
set long 50000 set linesize 130 col x format a80 word_wrapped; select dbms_metadata.get_ddl('TABLESPACE','LM_THIN_DATA') x from dual;
Or am I missing something?