views:

57

answers:

2

I am new to SQL Server, and I have been tasked with setting permissions on a remote server. What I need to do is limit the domain admin from having access to any of the DB's on a particular server. How can I accomplish this?

+2  A: 

Remove BUILTIN/Administrators from the SA group.

jwmiller5
+1  A: 

Important! Before you do this make absolutley sure you have either:

  • the password for the "sa" account or
  • your domain account is a member of the sysadmin server role

Otherwise you might find yourself locked out of the server.. not that this has ever happened to me.. ;-)

Nathan
Oops well it worked and I was locked out which wasnt too bad becase I was supposed to be locked out. Whew
Craig G