मुझे लगता है कि आप इसके बाद हैं
set serveroutput on size 100000 format wrapped
अगर मैं आपका प्रश्न समझता हूं।
अगर मैं ऐसा करता हूं:
set serveroutput on size 1000000
begin
dbms_output.put_line('no indent');
dbms_output.put_line(' indent');
end;
/
SQL*प्लस आउटपुट:
no indent
indent
अगर, हालांकि, मैं करता हूं
set serveroutput on size 1000000 format truncated
begin
dbms_output.put_line('no indent');
dbms_output.put_line(' indent');
end;
/
SQL*प्लस आउटपुट:
no indent
indent
आपको set trimspool on
eol
. तक के रिक्त स्थान को समाप्त करने के लिए ।