SQL Server 不区分大小写
http://msdn.microsoft.com/en-us/library/ms179254.aspx
这适用于所有数据库还是我必须在我要添加的每个新数据库上手动使用?
http://msdn.microsoft.com/en-us/library/ms179254.aspx
Will this work for all databases or must I manually use on every new database which I will add?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
引用您提供的链接,第一行内容如下:
这是假设正在创建的数据库未指定要使用的排序规则使用。
数据库是一组对象(表、函数等),它们可以来自多个模式。实例是在主机上运行的服务器应用程序——您可以在一台主机上运行多个 SQL Server 实例。每个都可以拥有大量数据库。
Quote from the link you provided, first line reads:
That's assuming the databases being created aren't specifying what collation to use.
A database is a group of objects (tables, functions, etc), which can be from multiple schemas. The instance is the server application running on the host -- you can have more than one SQL Server instance running on a single host. Each could have numerous databases with them.
在安装 SQL Server 期间,您指定默认排序规则 - 该排序规则用于您创建的每个数据库。如果您新创建一个数据库并想要有一个新的排序规则 - 您必须根据此指定它 文档链接 或在数据库的属性菜单中。如果您已经创建了数据库并且需要更改填充数据的现有列的排序规则,则需要执行 此声明。
During the installation of SQL Server you specify the default collation - which is used on every database you create. If you newly create a database and want to have a new collation - you have to specify it according to this documentation-link or in the properties-menu of the database. If you already have created a database and need to change the collation of existing columns filled with data you need to perform this statement.