Tagged Questions

0
votes
6answers
2k views

Inserting data into SQL Table with Primary Key. For dupes - allow insert error or Select first?

Given a table such as: CREATE TABLE dbo.MyTestData (testdata varchar(50) NOT NULL) ALTER TABLE dbo.MyTestData WITH NOCHECK ADD CONSTRAINT [PK_MyTestData] PRIMARY KEY CLUSTERED (testdata) And …