Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
I think your best bet is to add an ID column to your table as an integer or guid type. Set the primary key on it, and let it be a the index. Then, define a UNIQUE constraint on your combination of 3 columns. The INSERTs, UPDATEs and DELETEs will be faster with the single part primary key and you will still have the UNIQUE constraint on the current 3-part primary key setup.
|