how to increase sqlplus column output length?
问题 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 width of the column? I tried with SET SERVEROUTPUT ON SIZE 1000000; SET LINESIZE 50000; set pagesize 50000; set long 50000; But I'm still getting the same result. 回答1: I've just used the following command: SET LIN[ESIZE] 200 (from http://ss64.com/ora/syntax-sqlplus-set.html). EDIT: For clarity, valid commands are SET LIN 200