is it posible to have SQL Server to have a unique key based on 2 columns?
I can have duplicates in both columns but not at the same time:
MfgID : Cu
CREATE UNIQUE NONCLUSTERED INDEX IX_TableName_MfgID_CustNum ON TableName ( MfgID , Column2 ) WITH( IGNORE_DUP_KEY = OFF)