Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: PL/SQL : How do you echo text to screen ?
On 1 Jan 1997 05:55:13 -0600, aak2_at_Ra.MsState.Edu (Atif Ahmad Khan) wrote:
>
>I am new to PL/SQL and need to echo some strings to the screen.
>Something to the equivalent of
>
You have to enter following statement on the beginning of the code:
set serveroutput on
and inside of your code:
dbms_output.put_line('This is a test');
Oracle 7.3 should handle basic IO to Operating System but I don't have any experience with that. Received on Thu Jan 02 1997 - 00:00:00 CST
![]() |
![]() |