I need to upload a .csv file to a sql table through an asp.net upload control. I have the sql bulk insert command ready but I need to have it so it assigns each record that is uploaded from the .csv file a uniqueidentifier (guid) automatically. This isnt included in the .csv file. Can someone help me?

link|improve this question

40% accept rate
feedback

1 Answer

You can set your table up to use a default NEWID() so that the unique identifier is added automatically when a record is inserted.

CREATE TABLE MyUniqueTable
   (UniqueColumn   UNIQUEIDENTIFIER      DEFAULT NEWID(),
   Characters      VARCHAR(10) )
GO
INSERT INTO MyUniqueTable(Characters) VALUES ('abc')
GO

When you do your bulk insert, each row will have a unique identifier added to it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.