Hi Thomas, The problem is not with "insert values" using batch update. That part is OK and I used batch mode just to populate the table faster.
The problem is with "order by" clause in "create table" later in the example. That results in out of memory because the rows are accumulated in memory instead of temporary table (as far as i can see) On Sep 10, 10:17 am, Thomas Mueller <[email protected]> wrote: > Hi, > > In H2, parameters for batches are kept in memory (except BLOB/CLOB). I > thought all databases do it like this, is that not the case? > > 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.
