On 2014-09-18 11:10 AM, Michael Gimeno-Koch wrote:
Hi, I'm using the H2 database with the DATABASE_TO_UPPER=false flag. Now i have the situation that i need to rename a table from camel case to upper case. This fails with an "table already exists" exception. For example with the following statement: "ALTER TABLE someTableName RENAME TO SOMETABLENAME".
Have you tried: ALTER TABLE "someTableName" RENAME TO SOMETABLENAME -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/d/optout.
