Multiple Event Stores

Hello,

We’re currently planning to switch Axon Server Developer Edition (already used in production) to Axon Server Professional Edition as the latter one provides useful features like multi-context, high scalability etc.
All events are currently stored in a SQL database and we want to keep it like that. Basically, we’ll map one context to one identified Bounded Context.

Now, the question is if it’s possible to provide a separate SQL schema for each Axon context?
This way, all events of context1 are persisted separately from context2.

Other question: is it possible to capture events from context2 in an application that is ‘connected’ to context1?

Is there anything else we’ve to consider? For instance, can saga’s listen to events coming from multiple contexts…?