What are the differences in creating an Index on multiple columns as a Constraint or as an Index? What reasons can be given for using one over the other (e.g. I'd use the Constraint when....)?
EXAMPLES:
CREATE
UNIQUE NONCLUSTERED INDEX IX_VisitorLastAndFirstName
ON dbo.Visitors(VisitorLastName, VisitorFirstName)
ON [PRIMARY]
ALTER TABLE dbo.Visitors ADD CONSTRAINT
IX_VisitorLastAndFirstName
UNIQUE NONCLUSTERED
(VisitorLastName, VisitorFirstName)
ON [PRIMARY]