I would like to setup my windows authentication login to SQL to mimic the privileges of the ‘sa’ account. What is the easiest way to do this and have it applied to a dozen different databases?
Thanks,
Brian Enderle
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
“sa” is at the SQL Server Instance level: not the database level. You’ll get full rights in every database automatically.
Basically,
or
The association between the 2 styles is here on MSDN
But: are you sure?