How to list all users with select any table permission in oracle?

by wilmer.lemke , in category: MySQL , 6 months ago

How to list all users with select any table permission in oracle?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by lily , 6 months ago

@wilmer.lemke 

To list all users with the SELECT ANY TABLE permission in Oracle, you can run the following query:

1
2
3
4
SELECT grantee
FROM dba_tab_privs
WHERE privilege = 'SELECT'
AND table_name = 'ANY';


This query retrieves the list of users who have been granted the SELECT ANY TABLE privilege in the database. The DBA_TAB_PRIVS view contains information about table privileges granted to users and roles in the database.

Related Threads:

How to revoke alter table permission from user in oracle?
How to select a table using a string in oracle?
How to get users list in codeigniter?
How to get list of all auth0 users?
How to display comma seperated list into table in ember.js?
How to fill empty column from another table in oracle?