/ Published in: SQL
ver tablas que tiene un usario asiganadas por privilegio
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
SELECT owner, TABLE_NAME, select_priv, insert_priv, delete_priv, update_priv, references_priv, alter_priv, index_priv FROM table_privileges WHERE grantee = 'AUDITOR' ORDER BY owner, TABLE_NAME;