alexlima.com
How to find permissions granted on user in a database?
Run the following SQL to find permissions granted on users on the database select case when p.protecttype = 205 then 'GRANT' when p.protecttype = 206 then 'DENY' else 'unkn…