SQL Server -Änderungsspalte für eindeutig

alter table location_key drop constraint pinky;
alter table your_table add constraint pinky unique(yourcolumn);
Curious Cat