Flush dbms_output
Oracle 11.0.1.7:
I have a PL/SQL that goes in a for loop and does some work. I have dbms_output.put_line to print lines. It looks like these lines are printed only when PL/SQL ends. I tried dbms_output.enable, dbms_output.new_line but nothing seems to be flushing the buffer on demand.
Is there a way to flush the buffer when I need to? I need to see how PL/SQL is progressing.