Is it possible to create an in-memory H2 database that is initialized with the contents of an on-disk H2 database, run some operations on it and then persist the in-memory database back into a database file?
The reason I want to do this is that I have some data processing (loading from external sources, calculating derived tables and creating indexes) that takes a long time using the on-disk database and I hope to speed this up by doing it in-memory.