List all permission of a user in current database

Professionaluser
Posted by Professionaluser under Sql Server category on | Points: 40 | Views : 836
To list out the all the permissions which granted to an user in current database, use below code

EXEC sp_helprotect NULL, 'TestUser ';

Comments or Responses

Login to post response