TitleistDBA
IS-IT--Management
I have a user who wants to be able to add her own accounts to the sql server. The problem is as follows.
To execute sp_addlogin you must be an 'SA' or in the server security role. I don't mind adding this person to the sercurity role.
Once the login has been created the user needs to be added to the db role msrv_clerk.
like this exec sp_adduser 'login', 'msrv_clerk'
The problem is you must be an SA or dbo to exec the sp_adduser. I do not want to grant those rights to anybody.
Does anybody have a solution to this problem?
Thanks for the help.
To execute sp_addlogin you must be an 'SA' or in the server security role. I don't mind adding this person to the sercurity role.
Once the login has been created the user needs to be added to the db role msrv_clerk.
like this exec sp_adduser 'login', 'msrv_clerk'
The problem is you must be an SA or dbo to exec the sp_adduser. I do not want to grant those rights to anybody.
Does anybody have a solution to this problem?
Thanks for the help.