SQL> set serveroutput off
SQL> begin
  2    for idx in 1..100000
  3    loop
  4      dbms_output.put_line('This is a long line of text') ;
  5    end loop ;
  6  end ;
  7  / 
 
PL/SQL procedure successfully completed.
 
SQL> set serveroutput on size 2000
SQL> begin
  2    for idx in 1..100000
  3    loop
  4      dbms_output.put_line('This is a long line of text') ;
  5    end loop ;
  6  end ;
  7  /