I have a piece of maintenance code that should grant select privileges to a certain user at certain points of time:
grant select on A_DB.A_TABLE to READ_ONLY_USER;
I want to do this for all tables. I could use select * from tab
in Oracle or show tables
in MySQL to get the complete list and then move on like that.
But since I already have the javax.persistence.EntityManager
Object at hand, I wondered if there is another way to get at all the mapped Entities, the Manager knows about (I am using Hibernate under the hood).