什么是可信连接?
SQL Server 2005 中的可信连接是什么(可信与 Windows 身份验证)?
What is a trusted connection in terms of SQL Server 2005 (Trusted vs Windows Auth)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可信连接与在 SQL Server 2005 中使用 Windows 身份验证相同。身份验证由域完成,授权由 SQL Server 处理。
SQL Server 还可以使用自己的登录名,例如
sa
用户。 这些都经过 SQL Server 的身份验证和授权。 它们仅在 SQL Server 以混合身份验证模式运行时才可行。MSDN 有一篇关于选择正确的身份验证模式的好文章。 这是一本很好的入门书。
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.
可信连接意味着Windows 身份验证(即Windows 登录)。
SQL Server 有两种身份验证模式:混合身份验证模式和 Windows 身份验证模式。
混合可以选择 SQL Server 登录(用户名和密码)和 Windows 身份验证。
A Trusted connection means Windows Authentication (i.e. a Windows login).
SQL Server has two Authentication modes: Mixed and Windows Authentication Mode.
Mixed has the option of SQL server logins (username and password) and Windows Authentication.