Hi PL \ SQL Developer Experts,
I work in PL/SQL developer version 7.1.5.1398 connecting to Oracle 10.2.0.1.0
The following snippet works fine
DECLARE
l_text VARCHAR2(4000) := rpad('1', 4000, '1');
BEGIN
dbms_output.put_line(l_text);
END;
But the following snippet fails
DECLARE
l_text...