Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is a trusted connection in terms of SQL Server 2005 (Trusted vs Windows Auth)?

share|improve this question

2 Answers

up vote 16 down vote accepted

A trusted connection is the same thing as using Windows Authentication in SQL Server 2005. Authentication is done by the domain, and authorization is handled by SQL Server.

SQL Server can also use its own logins, such as the sa user. These are both authenticated and authorized by SQL Server. They are only viable if SQL Server is run in Mixed Authentication Mode.

MSDN has a good article about choosing the right Authentication Mode. It's a good primer.

share|improve this answer
1  
+1, for the difference between Authentication and Authorization – Mitch Wheat Aug 9 '09 at 3:58
2  
@Mitch: My highest voted answer ever is that difference. How sad is that? stackoverflow.com/questions/1045107/… – Eric Aug 9 '09 at 3:59
Thanks for the article link. – Csharp Aug 9 '09 at 4:00

Trusted means Windows Authentication.

share|improve this answer
so trusted connection is based on windows logon id? – Csharp Aug 9 '09 at 3:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.