Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How configure Oracle 9i not case sensitive...
"Eloy Mier Pérez" <eloy.mier_at_tantacom.com> wrote in message
news:Ku5ic.115120$Rc.3299230_at_news-reader.eresmas.com...
> Hi, i would configure Oracle 9i not case sensitive and in the table names
> dont use ""...
>
> How can i do this ?
>
> Thanks in advance
>
>
Eloy,
By default, names in Oracle are stored in upper case. To get mixed case, you will have to enclose the name in double quotes.
The following example demonstrates this: SQL> CREATE TABLE "Mixed_Case" AS SELECT * FROM emp;
Table created.
SQL> SELECT table_name FROM user_tables;
TABLE_NAME