Hi, I can't reproduce the problem so far. My test case is: http://h2database.com/p.html#ea7f6b1e9aee8494acfca19dc8b7d623
I get the following results: create table / insert: 206208 ms create index: 119616 ms query: 1129 ms iterate: 1831 ms; rows: 111111 query: 7729 ms iterate: 12963 ms; rows: 1111111 query: 29306 ms iterate: 47254 ms; rows: 4111112 This is using the default settings. H2 is quite slow when the result is large, because it creates a temp table / temp result set file in this case. Server side cursors would help here (queries with many rows would be about 2 or 3 times faster), but server side cursors are not implemented yet. 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.
