how to increase sqlplus column output length?

后端 未结 10 2165
萌比男神i
萌比男神i 2021-01-30 12:45

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

10条回答
  •  萌比男神i
    2021-01-30 12:59

    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;
    

提交回复
热议问题