Is it possible to use essentially two H2 databases within the same application: in-memory for some types of data and file storage for other data?
My application uses spring boot/batch. Spring automatically stores some metadata in H2. I have no control over this and generally don't care about persisting it - which is why I want it stored in memory.
However, I also have application specific data that I wanted persisted - which I want I want to store it in a file.
Is this possible?