Hey everyone,
I apologize for the newbie question but I'm looking for the correct
answer. We have 4 production SQL servers at this time. When
we had originally set them up the "sa" account belonged to the domain
administrators group. Since we have a SQL admin team and a domain
admin team we would like to remove this privilege. Is this
something we can and should do Our SQL servers use mixed mode
authentication and some databases are configured for Windows
authentication. I would appreciate any input from the community.

"sa" account and domain level rights
Claudio Aguilar
Luiz Fabio
superbrad
You are mixing some things up:
"When we had originally set them up the "sa" account belonged to the domain administrators group."
As sa is a sql server login it cannot belong to any domain group.
"Our SQL servers use mixed mode authentication and some databases are configured for Windows authentication. "
Authentication takes place at the server level not the database level, so although you switched on Mixed Auth on Server level you can still have autorized users in the database who are authenticated via SQL Server authentication.
Server --Authentication
Database --Authorization
HT, Jens Suessmeyer.
mgraul
OK, lets clarify something.
For the User DOmain account sa, the following schema is valid:
Domain --Domain Adminstrator --> (inherits) local administrative rights on the SQL Server -- inherits serverole systemadministrator (in sql server because the local admin group and therefore also the domain admins) are systemadministrators --> inherits dbowner role on the database, because systemadministrator are in the role downers by default.
So breaking the chains:
-With revoking domain administrative rights from the user sa won’t break the chain if you grant him local admin rights.
-With revoking domain administrative rights from the user sa won’t, not giving him local administrative rights on the server won’t break the chain if you put him to the systemadmistrator role on the server.
-With revoking domain administrative rights from the user sa, not giving him local administrative rights on the server, not putting him in the role systeadminstrators break the chain, though he only has downer access to the database now.
It hoped I clarified that a bit. If you didn’t understand my explanation or you have a further question, don’t hesitate to ask :-)
HTH, Jens Suessmeyer.
GreenStone90
HTH, Jens Suessmeyer.