Frank Schmitt
Member²
Scenario: I have a view with column names contain spaces:
Right-clicking this view in the Object browser and choosing "Edit" generates this (invalid) SQL Statement:
This is really annoying.
SQL:
create view v_plsqldev_bug(id, "name containing spaces")
as
select 1, 'hello'
from dual;
Right-clicking this view in the Object browser and choosing "Edit" generates this (invalid) SQL Statement:
SQL:
create or replace view v_plsqldev_bug
(id, name containing spaces)
as
select 1, 'hello'
from dual;
This is really annoying.