1

What is the ideal "Log On As" account to use for SQL Server 2008 R2 Express?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
kroehre
  • 1,104
  • 5
  • 15

2 Answers2

1

It depends how you're going to access it, in a Domain, Locally, or else. The most secure way is to use Windows Authentication. But if that's not your case, you could user Mixed Authentication and remember a best practice is to create an account with SysAdmin privileges, and disable SA account that is created by default.

Mentor
  • 485
  • 1
  • 5
  • 18
0

What are you trying to do?

In general, if you can use a windows account, you have greater security. This is not always possible (many ISP situations come to mind), so you have to use SQL security. But determining best account to use depends on context.

If this is for an Application, "sa" is never the answer.

Gregory A Beamer
  • 16,870
  • 3
  • 25
  • 32