Вы можете нарушить правила имени объекта схемы Oracle Database (без зарезервированных слов, начинаются с AZ, длиной 30 символов и т. Д.), Заключив имя в двойные кавычки.Чтобы позже получить доступ к объекту, вы ДОЛЖНЫ заключить имя в двойные кавычки.
В точку:
me@XE> create table t ("x" int);
Table created.
me@XE> select x from t;
select x from t
*
ERROR at line 1:
ORA-06553: PLS-306: wrong number or types of arguments in call to 'OGC_X'
me@XE> select "x" from t;
no rows selected
me@XE> create view v as select * from t;
View created.
me@XE> select x from v;
select x from v
*
ERROR at line 1:
ORA-06553: PLS-306: wrong number or types of arguments in call to 'OGC_X'
me@XE> select "x" from v;
no rows selected
me@XE>