--
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 h2-database...@googlegroups.com.
To post to this group, send email to h2-da...@googlegroups.com.
Visit this group at https://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "H2 Database" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/h2-database/TAlNnoWW0kI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to h2-database...@googlegroups.com.
jt.execute("set trace_level_file 3");
So far, I could not reproduce the problem, my test case is:
DeleteDbFiles.execute("~/temp", "test", false);
String url = "jdbc:h2:~/temp/test";
Connection conn = DriverManager.getConnection(url);
Statement stat = conn.createStatement();
stat.execute("create table if not exists test(id int, data clob)");
for (int i = 0; i < 10; i++) {
stat.execute("insert into test values(1, space(10000))");
stat.execute("delete from test");
}
stat.execute("set trace_level_file 3");
stat.execute("analyze");
stat.execute("shutdown defrag");
Backup.execute("~/temp/test.zip", "~/temp", "test", false);
conn.close();
Regards,
Thomas