how to know the users who has CREATE TABLE permission in the database

Professionaluser
Posted by Professionaluser under Sql Server category on | Points: 40 | Views : 693
The following code snippet lists out all users who have been granted the CREATE TABLE permission.

EXEC sp_helprotect @name = 'CREATE TABLE ';

Comments or Responses

Login to post response