There is probably nothing wrong with the dictionary. You probably really have two tables, one named AAAAAABBBB and one named "AaaaaaaBbbb". To verify:
desc XXX.AAAAAABBBB
desc XXX."AaaaaaaBbbb"
select count(*) from XXX.AAAAAABBBB
select count(*) from XXX."AaaaaaaBbbb"
insert into XXX.AAAAAABBBB values (...)
select count(*) from XXX.AAAAAABBBB
select count(*) from XXX."AaaaaaaBbbb"
Originally posted by BV1963
I believe you do not see a tail of the name and that is why they appear to be the same.
You've missed the point. It is very evident that Queyon has two tables with the same names, except that one is in uppercase (default), the other one in mixed case. Those are two different tables for Oracle, and as Jeff has allready pointed out you have to use double quotes to reference a mixed-case-named table.
Jurij Modic ASCII a stupid question, get a stupid ANSI
24 hours in a day .... 24 beer in a case .... coincidence?
Bookmarks