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
This worked like a charm for me with a CLOB column:
set long 20000000 set linesize 32767 column YOUR_COLUMN_NAME format a32767 select YOUR_COLUMN_NAME from YOUR_TABLE;