Can someone say me how to show all privileges/rules from a specific user in the sql-console?
|
You can try these below views.
DBAs and other power users can find the privileges granted to other users with the These views only show the privileges granted directly to the user. When wewant to find out the privileges the user has gained from its granted roles things get more complicated. We need to get recursive, because roles can be granted to roles. Pete Finnegan's script (which Justin linked to) is our best bet, although it is easy enough to knock up our own. |
||||
|
|
|
There are various scripts floating around that will do that depending on how crazy you want to get. I would personally use Pete Finnigan's find_all_privs script. If you want to write it yourself, the query gets rather challenging. Users can be granted system privileges which are visible in |
|||
|
|