NK
Member²
-- I am using PL/SQL Developer v7.1.5 against Oracle 10.2.0.4
-- dbms_output.put_line() is supposed to handle 32K
-- The second put_line() below fails, regardless of what I set the output buffer size to (in SQL Window).
declare
s varchar2(1001);
begin
s := rpad('x', 1001, 'x');
dbms_output.put_line(length(s));
dbms_output.put_line(s);
end;
-- dbms_output.put_line() is supposed to handle 32K
-- The second put_line() below fails, regardless of what I set the output buffer size to (in SQL Window).
declare
s varchar2(1001);
begin
s := rpad('x', 1001, 'x');
dbms_output.put_line(length(s));
dbms_output.put_line(s);
end;