ORA-02463: Duplicate HASH IS option specified
Cause: The HASH IS option is specified more than once.
Action: Only specify the HASH IS option once.
ORA-02463错误是Oracle数据库系统中的一个标准错误,表示当在视图中使用HASH IS子句时,指定了重复的表表达式时发生。
CREATE VIEW myView
AS
:
:
HASH IS (COL NAME1)
HASH IS (COL NAME1)
CREATE VIEW myView
AS
:
:
HASH IS (COL NAME1)