command window bug

marek

Member²
Hi,
the following statement causes 'sql error' message in command window:

CREATE OR REPLACE VIEW test_vw
AS
select * FROM dual
/* xxxx */

-- xxx
WHERE 1 = 1
/

it's ok without empty row after /* xxxx */

Regards,
Marek
 
This is the same behavior as SQL*Plus. You can execute the "SET SQLBLANKLINES ON" command to override this.
 
Back
Top