Hi, This looks like a corrupt database. A workarounds is: use the tool org.h2.tools.Recover to create the SQL script file, and then re-create the database using this script. Does it work when you do this?
An important corruption problem was fixed in version 1.2.135 (see the change log). Known causes for corrupt databases are: - If the database was created or used with a version older than 1.2.135, and the process was killed while the database was closing or writing a checkpoint. - Using the transaction isolation level READ_UNCOMMITTED (LOCK_MODE 0) while at the same time using multiple connections. - Disabling database file protection using (setting FILE_LOCK to NO in the database URL). Some other areas that are not fully tested are: - Platforms other than Windows XP, Linux, Mac OS X, or JVMs other than Sun 1.5 or 1.6 - The feature MULTI_THREADED - The features AUTO_SERVER and AUTO_RECONNECT - The file locking method 'Serialized' Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
