Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL Question
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
![]() |
![]() |