Output from PL/SQL [message #69382] |
Thu, 20 December 2001 05:51 |
Ashish K. Mishra
Messages: 5 Registered: December 2001
|
Junior Member |
|
|
When i am executing a procedure it gives me the dbms o/p after a long time ...so what statement can we use to see it instantly like as in forms we can have synchronize
----------------------------------------------------------------------
|
|
|
Re: Output from PL/SQL [message #69383 is a reply to message #69382] |
Thu, 20 December 2001 09:28 |
Suresh Vemulapalli
Messages: 624 Registered: August 2000
|
Senior Member |
|
|
dbms_output.put_line procedure writes into buffer and displays only after completion of pl/sql block execution. if you want immediate response create some table , insert records in to that table and query it.
----------------------------------------------------------------------
|
|
|