Maxmix
Member³
Having table, referencing another table with constraint:
we are usually able to launch linked query for selected row.
However, if constraint name has Russian characters, then Linked Query does not execute. Instead, a new empty window is created, and message 'ORA-00900 Invalid SQL statement' pops up. It happens with many versions of Oracle Client and Oracle Database. Character set of database is CL8MSWIN1251.
Code:
CREATE TABLE "SHAL"."BANKS"
( ....
CONSTRAINT "<some cyrillic characters>" FOREIGN KEY ("BNK_RGN")
REFERENCES "SHAL"."REGIONS" ("REG_RGN") ENABLE,
....
)
we are usually able to launch linked query for selected row.
However, if constraint name has Russian characters, then Linked Query does not execute. Instead, a new empty window is created, and message 'ORA-00900 Invalid SQL statement' pops up. It happens with many versions of Oracle Client and Oracle Database. Character set of database is CL8MSWIN1251.
Last edited: