Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: how to print something in PL/SQL?
use dbms_output.put_line procedure.
example :
set serveroutput on
begin
dbms_output.put_line('this line will print');
end;
/
--
Regards
Emmanuel HUMBLOT e_humblot_at_wanadoo.fr
Jeff <kit_at_cintec.cuhk.edu.hk> a écrit dans l'article
<867dfk$e4d$1_at_justice.csc.cuhk.edu.hk>...
> Hi,
>
> How do you print something in stdout in PL/SQL?
> Does 'prompt' work?
>
> Jeff
>
>
>
Received on Fri Jan 21 2000 - 02:49:05 CST
![]() |
![]() |