Have you ever had SQL Server 2008 return a different result set than SQL Server 2000?

可紊 提交于 2019-11-30 23:43:23

There are so many things that could cause this problem including (but not limited to) collation and system settings. If we saw the SP we might be able to spot the culprit. In addition to changes in deployments there are differences between versions see

http://msdn.microsoft.com/en-us/library/ms143179(v=sql.100).aspx

and

http://msdn.microsoft.com/en-us/library/ms143179.aspx

Views with order by won't be ordered in SQl Server 2008, see here: Create a sorted view in SQL Server 2005 and SQL Server 2008

When you say incorrect results, what do you mean? The Language of the SQl Server installation can also be factor if you pass in dates as strings and you are not using ISO/safe formats

Could also be the ANSI settings from the connection coming in at your client's DB

perhaps they have ANSI_NULLS OFF instead of ON

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!