Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How to get output text immediately
Robert Wehofer schrieb:
>>It depends , how you are logging. And it depends, how OUTPUT is defined. >>The most straight forward way to get your message to see immediately ( >>for example - you have a script running in the sqlplus and output is >>your console, maybe redirected to file ) - simply select your message >>from dual. >> >>SELECT 'The long running process begins...' FROM DUAL; >>BEGIN >> --long running process >>END;
Plsql is supposed to run on the server and in general case detached from any kind of output device. To get the message from a pl sql unit you have to use some kind of interprocess communication - the numerous examples how to do that were given you in all other replies to you post.
Best regards
Maxim Received on Tue Nov 15 2005 - 04:19:09 CST