Alternatives to dbms_output
Because it caches output and dumps it at the end of execution, dbms_output isn’t ideal for judging how a piece of PL/SQL is executing. Alternatives are:
- dbms_application_info
- utl_file
Because it caches output and dumps it at the end of execution, dbms_output isn’t ideal for judging how a piece of PL/SQL is executing. Alternatives are: