empty lines when executing sql script

hello from austria,

during the execution of "create view" followed by several "comment on " a lot of emtpy lines are generated in the "Dialog" window - i am using 12.0.1.1814 (64bit). in 11 the behaviour was as expected - only the prompt are visible - same in sqlplus.
it's not a show-stopper - but it's annoying.

kind regards
raimund
 
Still there in 12.0.2.1818 (64bit).
Im running scripts with ending .sql in a command window and a blank line is inserted after every command. I agree to Raimund that it's annoying.

Example:

Set Feed Off
Set Termout Off
Drop Table T1;
Set Termout On
Prompt Create
Create Table T1 ( A Number );
Prompt Insert
Insert Into T1 Values(1);
Insert Into T1 Values(2);
Prompt End

results in:

SQL>
Create
(one blank line)
Insert
(one blank line)
(another blank line)
End
 
Back
Top