Want to post your scripts here in this blog ? Email it to snojha@gmail.com. You will be rewarded for your scripts if selected by our experts.

Showing posts with label Check which user has 'ALTER SESSION' and 'ALTER SYSTEM' privileges. Show all posts
Showing posts with label Check which user has 'ALTER SESSION' and 'ALTER SYSTEM' privileges. Show all posts

Wednesday, January 13, 2010

Check which user has 'ALTER SESSION' and 'ALTER SYSTEM' privileges

select grantee from dba_sys_privs where privilege = 'ALTER SESSION';


select grantee from dba_sys_privs where privilege = 'ALTER SYSTEM';