Hi all, I wonder whether it is possible to create an index on a transactional temp table?
We create the transactional table using: create local temporary table temp(id int primary key, name varchar(255)) on commit drop transactional; This works fine, but as soon as we create an index on this table the transaction is commited. Is there a way to create an index without having the transaction committed? g Dario -- 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.
