As mentioned above, import the data into a temporary table and then paste this value into the actual table
DECLARE @TempTable TABLE (Name nvarchar(max)) BULK INSERT @TempTable FROM 'C:\YourFilePath\file.csv' WITH ( FIELDTERMINATOR = ',', ROWTERMINATOR = '\n' ) INSERT INTO TABLE ([Name], [TypeId]) Select Name,'99E05902-1F68-4B1A-BC66-A143BFF19E37' from @TempTable
source share