how to increase sqlplus column output length?

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

    What I use:

    set long 50000
    set linesize 130
    
    col x format a80 word_wrapped;
    select dbms_metadata.get_ddl('TABLESPACE','LM_THIN_DATA') x from dual;
    

    Or am I missing something?

提交回复
热议问题