I am trying to create a unique index and i want the index to include only distinct values. Here is my query
create unique index POS on POSDAT ([Chain id],Store,Date) with IGNORE_DUP_KEY
I am setting the IGNORE_DUP_KEY to on and it still terminates while creating the index as if it is set to OFF.
Anybody know what i am doing wrong here??
create unique index POS on POSDAT ([Chain id],Store,Date) with IGNORE_DUP_KEY
I am setting the IGNORE_DUP_KEY to on and it still terminates while creating the index as if it is set to OFF.
Anybody know what i am doing wrong here??