It can be removed, I have removed it from all of our servers. There are some things you'll want to check before removing it.
1. Make sure that the account that runs the SQL Service has sysadmin rights.
2. Make sure that the DBAs (either by group or by name) are listed specifically and have sysadmin access.
3. If you are using the full text search you'll need to grant the "NT AUTHORITY\SYSTEM" sysadmin rights. This must be done via sp_grantlogin, it can not be done via Enterprise Manager.
4. If the SQL Agent runs under a different account than the SQL Server make sure that account has the rights that it needs.
Once you've done these things you should be able to safely remove the BUILTIN\Administrators.
exec sp_grantlogin [BUILTIN\Administrators]
go
exec sp_addsrvrolemember @loginame='BUILTIN\Administrators', @rolename='sysadmin'
go
If you deny the builtin\Administators the right to log in that should totaly block there ability to log into the SQL Server at all. Even if they have been granted rights through some other group. This would lock the DBAs out if they have admin access to the server.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.