关于unique index问题
请教一个问题。2> create unique nonclustered index cntr_idx1
on cntr (
disc_vv_c,
disc_cell_locn_n,
disc_htch_deck_c,
disc_stw_seq_n,
cntr_n_c )
3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15>
16> go
Msg 1505, Level 16, State 1:
Line 2:
Create unique index aborted on duplicate key.Primary key is '<NULL>, " ", " ",
1, "TRLU 2807128"'
提示说重复健,
1> select count(*) from cntr where cntr_n_c="TRLU 2807128"
2> go
-----------
1
(1 row affected)
看这个结果,应该没有重复的阿。
那位能给解释一下 因为检查uniqueness的时候实际用到的key只有前4个,所以你这个情况前4个key都是有重复的,即使第5个不重复也没有什么用,因为这样index的作用已经很小了,好的办法就是改变你key的顺序
页:
[1]