客户端排序规则和 SQL Server 2005

发布于 2024-07-05 09:48:46 字数 322 浏览 3 评论 0原文

我们正在将现有程序从 Win2k/SQL Server 2k 升级到 Windows 2003 和 SQL Server 2005,并购买一个也使用 2k3/2k5 的新程序。 供应商表示,为了让我们托管这两个数据库,我们需要获得企业版,因为软件客户端使用不同的排序规则进行连接,并且只有企业版支持此功能。

我在 MS 的网站上找不到任何支持这一点的内容,而且说实话,如果标准版有效,我不想为企业版支付额外费用。 我是否错过了 SQL Server 的一些未提及的功能,或者正如我怀疑的那样,这是一个供应商试图向我追加销售?

We're upgrading an existing program from Win2k/SQL Server 2k to Windows 2003 and SQL Server 2005 as well as purchasing a new program that also uses 2k3/2k5. The vendor says that for us to host both databases we need to get the Enterprise version because the softwares clients use different collation for the connections and only Enterprise supports this.

I cannot find anything on MS's site to support this and, honestly, don't want to pay the extra for Enterprise if the Standard edition works. Am I missing some not talked about feature of SQL Server or is this, as I suspect, a vendor trying to upsell me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你穿错了嫁妆 2024-07-12 09:48:46

SQL Server 2000/2005/2008 的所有版本都支持多个数据库,每个数据库都使用自己的排序规则序列。 您不需要企业版。

当您的数据库使用的排序规则与数据库服务器的默认排序规则不同时,如果您使用临时表和/或表变量,则需要采取一些额外的预防措施。 临时表/变量位于 tempdb 数据库中,该数据库使用主数据库使用的排序规则 sequence。 只需记住在临时表/变量中定义字符字段时使用“COLLATE database_default”即可。 我不久前在博客上提到了这一点,如果你想要更多细节。

All editions of SQL Server 2000/2005/2008 support having multiple databases, each using their own collation sequence. You don't need the Enterprise version.

When you have a database that uses a collation sequence that is different from default collation for the database server, you will need to take some extra precautions if you use temporary tables and/or table variables. Temp tables/variables live in the tempdb database, which uses the collation seqyuence used by by the master databases. Just remember to use "COLLATE database_default" when defining character fields in the temp tables/variables. I blogged about that not too long ago, if you want some more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文