On Fri, Aug 9, 2013 at 6:42 PM, davide.cavestro <[email protected]> wrote: > I actually don't use LOBs (could they be internally used by H2 in order to > save the transaction log?)
No, the LOB machinery is pretty only used for LOB's. Note that this includes CLOB and TEXT columns, so maybe you have some of those? > BTW I think having a way to access the list of pending transactions would be > a valuable enhancement (it could be something like a readonly view with a Yeah, I've tried to implement this before. Unfortunately, the problem is that H2 normally runs using a single global lock for all it's data, so the query that wants to display the metadata is blocked by the query currently executing. Maybe when we switch to using MVStore as a our default engine, and also make MULTI_THREADED=TRUE our default, it will become more feasible. -- 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/groups/opt_out.
