As part my project I had run a PL/SQL
block to process more than 13,00,000 records from 12 different tables.
To know the execution flow I have already included SET SERVEROUTPUT ON
command.
My requirement is to know the execution flow while the block is still running and the SET SERVEROUTPUT ON
only displays the flow after PL/SQL block execution.
SET SERVEROUTPUT ON ;
PL/SQL Block;