Re: DBMS_OUTPUT

From: <jejurkar_at_my-dejanews.com>
Date: Thu, 02 Jul 1998 00:37:28 GMT
Message-ID: <6neko8$orf$1_at_nnrp1.dejanews.com>


In article <6ndtuc$jdh$1_at_alexander.INS.CWRU.Edu>,   dw724_at_cleveland.Freenet.Edu (Dennis M. Hancy) wrote:
>
>
> How does one print a blank line using DBMS_OUTPUT?
>
> I tried this:
> DBMS_OUTPUT.PUT_LINE(' ');
>
> but it didn't work. Any ideas? Thanks.
>
> Dennis Hancy
>

Run the following script and see. It leaves two blank lines between lines of 'XXXXX'.

rem script start
begin
dbms_output.put_line('XXXXX');
dbms_output.put_line('
');
dbms_output.put_line('XXXXX');
end;
rem script end

Sameer

-----== Posted via Deja News, The Leader in Internet Discussion ==----- http://www.dejanews.com/rg_mkgrp.xp Create Your Own Free Member Forum Received on Thu Jul 02 1998 - 02:37:28 CEST

Original text of this message