Stroeks
Member²
Hello,
Drop Table (right click on the Tablename) does not drop tables when there are lowercase characters in the tablename.
create table "test" (id number);
Try dropping it with the right click on the Tablename in the objectlist
create table test (a varchar2(1));
Try dropping the lowercase table again!
It is even worse! It drops the table TEST, which has nothing to do with the table test!
Drop Table (right click on the Tablename) does not drop tables when there are lowercase characters in the tablename.
create table "test" (id number);
Try dropping it with the right click on the Tablename in the objectlist

create table test (a varchar2(1));
Try dropping the lowercase table again!
It is even worse! It drops the table TEST, which has nothing to do with the table test!
Last edited: