Hi all,
I am trying to spool data from a clob table as follows:
--------------------------
set long 10000
spool archive_data/N_DBA.TDETAIL.dat
select x from clob_table order by id;
spool off
-------------------------
where x is a CLOB.
in my file, the data is split into 80 byte lengths. So one row is split into several lines . Is there a way the output can be spooled without the extra new-line characters ?
I am trying to spool data from a clob table as follows:
--------------------------
set long 10000
spool archive_data/N_DBA.TDETAIL.dat
select x from clob_table order by id;
spool off
-------------------------
where x is a CLOB.
in my file, the data is split into 80 byte lengths. So one row is split into several lines . Is there a way the output can be spooled without the extra new-line characters ?