Anyone else having a problem with fields that exist being rejected with a ORA-00904 error?
Example:
UPDATE table1
SET table1.field1 = table2.field1
WHERE table1.field2 = table2.field2;
aka. ORA-00904 "table2","field2","Invalid Identifier".
I am running into this using MERGE INTO, SELECT
INTO, and UPDATE commands through PLDeveloper
in a standard SQL Window. Is this a known bug
in Developer???
The tables are valid, the fields are valid, the
table alias is valid, and the syntax of the
statements is simple and valid. Yet the system seems to be rejecting it. Anyone else encounter this problem?
Any help would be appreciated.
Example:
UPDATE table1
SET table1.field1 = table2.field1
WHERE table1.field2 = table2.field2;
aka. ORA-00904 "table2","field2","Invalid Identifier".
I am running into this using MERGE INTO, SELECT
INTO, and UPDATE commands through PLDeveloper
in a standard SQL Window. Is this a known bug
in Developer???
The tables are valid, the fields are valid, the
table alias is valid, and the syntax of the
statements is simple and valid. Yet the system seems to be rejecting it. Anyone else encounter this problem?
Any help would be appreciated.