标签: sql sql-server database tsql duplicate-data
我想知道如何创建我的表或选择一个插件来确保我没有得到重复的值。
create table test.dbo.test product, time, primary key(product, time) go
使用 Clustered ColumnStore 时,我不能有任何唯一约束来知道已插入的数据是唯一的。还有另一种检查方法吗?
答案 0 :(得分:4)
这是一种使用物化视图的解决方法。
http://sqlwithmanoj.com/2014/07/24/maintaining-uniqueness-with-clustered-columnstore-index-sql-server-2014/