Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 logins what they are?

Author  Topic 

funketekun
Constraint Violating Yak Guru

491 Posts

Posted - 2007-06-13 : 08:50:17
After installing 2005 I have these 5 logins. Do I need them or should i wipe them out? What are they?

YPGA-SQL2005-DEV\SQLServer2005MSFTEUser$IPG-SQL2005-DEV$MSSQLSERVER
YPGA-SQL2005-DEV\SQLServer2005MSSQLUser$IPG-SQL2005-DEV$MSSQLSERVER
YPGA-SQL2005-DEV\SQLServer2005SQLAgentUser$IPG-SQL2005-DEV$MSSQLSERVER
BUILTIN\Administrators
NT AUTHORITY\SYSTEM

=============================
http://www.sqlserverstudy.com

nr
SQLTeam MVY

12543 Posts

Posted - 2007-06-13 : 10:25:25
BUILTIN\Administrators
is the group which gives local administrators (and domain admins?) sa access.
Some people recomend removing it (can cause problems if you do) but my view is that admins should be trusted and can always screw up your system in other ways if they want to.

NT AUTHORITY\SYSTEM
Has high rights on the server but limited domain access and is used by quite a lot of things by default. It should be safe to get rid of it if you are using domain accounts for everything.
all services.

==========================================
Cursors are useful if you don't know sql.
DTS can be used in a similar way.
Beer is not cold and it isn't fizzy.
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2007-06-13 : 10:35:16
We always remove BUILTIN\Administrators from sysadmin role since domain or local windows admin doesn't manage sql server, but should leave NT AUTHORITY\SYSTEM in sysadmin or full text index will not work. For other three sql2k5 groups, check membership of them. I prefer create sql login for sql service account instead of granting permission to those groups since any windows admin can add user into group.
Go to Top of Page
   

- Advertisement -