How to flush dbms_output.put_line() periodically?
Oracle version is 11 and OS is AIX.
I am running a stored Oracle procedure that prints some messages using dbms_output.put_line().
The procedure runs for a long time and until it finishes, nothing is printed.
Is there a way to tell dbms_output.put_line() to flush the output from time to time and not wait
till the whole procedure completes?
Thanks.