Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个导致复制问题的唯一聚集索引(请参阅“有界更新”)。除了删除聚集索引之外,有什么方法可以使索引不唯一?
聚集索引也是主键吗?如果聚集索引是主键,那么也会创建一个唯一的聚集索引。这意味着你必须放弃和创造。
如果聚集索引不是主键,您可以使用 with drop existing 来删除/创建索引。
例如
create clustered index MyIndex on MyTable(MyColumn[s]) with(drop_existing=on);