How I can create a table with oracle but with small characters, when I create a table with small characters it converts auto to capital characters.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Folding (non-quoted) table names to upper case is required by the ANSI SQL standard.
You can create tables (and columns) with lowercase names using a quoted identifier (again this follows the SQL standard):
I would however strongly advise you, to not do that.
Once you have your tables created that way, you have to always use double quotes because any non-quoted name will (following the rules for SQL identifiers) again be folded to upper-case and thus won’t match the name as it is stored in the system catalogs.
Therefor the following statement will not work:
You have to use a quoted identifier:
For more details on (quoted) identifiers, please read the chapter Database Object Naming Rules in the manual.