how to increase sqlplus column output length?

后端 未结 10 2092
萌比男神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:59

    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.

提交回复
热议问题