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?
|
feedback
|
|
You can set your table up to use a default
When you do your bulk insert, each row will have a unique identifier added to it. | |||
|
feedback
|