Why would you want to create a table with a name forced to lower case? This is not standard Oracle and I suggest you avoid doing it if possible. By default you can type a table name in any sql statement using upper or lower case. The table name in the Data Dictionary is stored in upper case but Oracle will always identify it, regardless of case.
If you create the table with a forced lower case name you will always have to include the double quotes in all references to that table.
I can't think of any good reason why you would want to do this.
Main Topics
Browse All Topics





by: Geert_GruwezPosted on 2009-10-06 at 06:04:17ID: 25504494
It's possible using double quotes
create table "members" as ...