【发布时间】:2014-06-27 19:13:50
【问题描述】:
如果允许在一个表上创建 249 个非聚集索引,是否意味着在每一列上都有一个非聚集索引是安全的?那会有什么影响?或者我们必须只选择一些列来创建非聚集索引。
这是:
create nonclustered index ix_test(col1, col2, col3)
与此不同:?
create nonclustered index ix_test(col1)
create nonclustered index ix_test2(col2)
create nonclustered index ix_test3(col3)
【问题讨论】:
标签: sql sql-server sql-server-2008 indexing