List out the which user has which permissions on specific table

Professionaluser
Posted by Professionaluser under Sql Server category on | Points: 40 | Views : 911
To list out the permissions for a table 'TestTab', use below query

EXEC sp_helprotect 'TestTab' ;

Comments or Responses

Login to post response