Displaying message text from a stored procedure.
626512Mar 4 2008 — edited Mar 4 2008Within my stored procedures I am using DBMS_OUTPUT.PUT_LINE to output messages (error/warning/info/debug) but they are not displayed until the procedure has finnished. There is also the problem in that the amount of storage space for these message is limited (exceeding this limit can cause an OK procedure run to terminate with an error :( ).
Is there a better way that results in the 'displays' being made visible immediately?