SQL Server 本机客户端 10.0 与 Windows XP 的兼容性
驱动程序“SQL Server Native Client 10.0”与Windows XP兼容吗?
谢谢
Is the driver "SQL server native client 10.0" compatible with Windows XP?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是 - XP SP3 或更高版本支持 v10.0 本机客户端。
请参阅 http: //www.microsoft.com/downloads/en/details.aspx?FamilyID=228de03f-3b5a-428a-923f-58a033d316e1&DisplayLang=en#SystemRequirements
Yes - XP SP3 or later supports the v10.0 native client.
See http://www.microsoft.com/downloads/en/details.aspx?FamilyID=228de03f-3b5a-428a-923f-58a033d316e1&DisplayLang=en#SystemRequirements
如果由于某些遗留原因您需要在 Windows XP 上安装“ODBC Driver 11 for SQL Server”而不是版本 10(例如,因为您需要 TDS 7.4 支持,或者需要支持 SQL Server 可用性组侦听器等),但您收到以下错误消息:“此产品安装失败,因为此操作系统不支持该产品。”
您可以使用此处的过程创建将安装在 Windows XP 上的 msodbcsql.msi 文件:如何更改兼容性设置msi
步骤如下:
(VersionNT = 600 AND ServicePackLevel >= 2) OR (VersionNT >= 601)
”并将其更改为:“(VersionNT > ;= 500)
"If for some legacy reason you need to install "ODBC Driver 11 for SQL Server" on Windows XP instead of version 10 (for example, because you need TDS 7.4 support, or you need to support SQL Server Availability Group listeners, etc.), but you receive the following error message: "Installation of this product failed because it is not supported on this operating system."
You can use the procedure from here to create an msodbcsql.msi file that will install on Windows XP: How to change the compatibility setting of msi
The steps are:
(VersionNT = 600 AND ServicePackLevel >= 2) OR (VersionNT >= 601)
" and change it to: "(VersionNT >= 500)
"