how to increase sqlplus column output length?

后端 未结 10 2072
萌比男神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条回答
  •  一生所求
    2021-01-30 12:55

    On Linux try these:

    set wrap off
    set trimout ON
    set trimspool on
    set serveroutput on
    set pagesize 0
    set long 20000000
    set longchunksize 20000000
    set linesize 4000
    

提交回复
热议问题