When attempting to create an unique index with the following syntax:
CREATE UNIQUE INDEX Table_Index ON Table (CharColumn, IntColumn)
Why do I receive the error:
indexed columns are not unique
When attempting to create an unique index with the following syntax:
CREATE UNIQUE INDEX Table_Index ON Table (CharColumn, IntColumn)
Why do I receive the error:
indexed columns are not unique
You get the error "indexed columns are not unique" because the indexed columns are not unique, that is, there are some duplicate records.
Use a query like this to find out which records: