Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: clearing the screen
> Can someone tell me how to clear the screen using pl/sql.
> I have tried the following but to no avail.
>
> begin
>
> for v_counter in 1..30 loop
> dbms_output.put_line(' ');
> end loop;
> end;
Type
SET SERVEROUTPUT ON FORMAT WRAPPED
prior to running the loop. That should do the trick.
hth
Rene
-- Rene Nyffenegger http://www.adp-gmbh.chReceived on Sat Oct 04 2003 - 04:19:51 CDT
![]() |
![]() |