I am working in an old, enormous java application with JPA. I want to make as less changes as possible.
The custom framework this application is based on provides one EntityManager instance set up for one specific DB schema.
Can i somehow set that entityManager instance to other schema, do my job and set it back to the original?
All i need is to trigger a stored procedure on different schema.
Thanks