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 configuration is working for me:
set termout off set verify off set trimspool on set linesize 200 set longchunksize 200000 set long 200000 set pages 0 column txt format a120
The column format definition with the linesize option helped to avoid the truncation at 80 chars.
column
linesize