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

Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL Question

Re: PL/SQL Question

From: Ben Ryan <benryan_at_my-deja.com>
Date: Fri, 03 Sep 1999 04:29:19 GMT
Message-ID: <7qniql$msh$1@nnrp1.deja.com>


In article <37CF11A5.2280497D_at_sun.com>,   chi-on wong <john.wong_at_sun.com> wrote:
> Hi, is there a way to do the following in a PL/SQL block:
>
> Begin
>
> Message('Hello');
>
> End;
>

In SQL*Plus using an anonymous PL/SQL block

set serveroutput on
begin
dbms_output.put_line('Hello');
end;
/

Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't. Received on Thu Sep 02 1999 - 23:29:19 CDT

Original text of this message

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