I'm looking for a way to get a list of views, tables, procesdures etc, a user has been granted to. A select onto SYSROLEGRANTS helped me to find basic role of users -- but not more like this.
So e.g. Having this:
create or replace view myFancyView as
SELECT * from mytable;
GRANT SELECT ON myFancyView TO myUser;
I'm hoping for a list like that:
|User | Right |
|------|----------------------|
|MyUser| SELECT ON myFancyView|