Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: PL/SQL : How do you echo text to screen ?

Re: PL/SQL : How do you echo text to screen ?

From: mt25093 <mt25093_at_tellus.swipnet.se>
Date: 1997/01/02
Message-ID: <32cd2525.2627389@nntpserver.swip.net>#1/1

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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US