Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How to get output text immediately
> 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;
That seems not to work in a PL/SQL procedure.
In SQL Plus I'll get the error message
PLS-00428: INTO clause expected in SELECT statement
Robert Received on Tue Nov 15 2005 - 03:00:17 CST