Created
July 10, 2024 09:22
-
-
Save r1d3rzz/b907d4816d135457ecf745e4e239d988 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BULK INSERT [dbo].[Designations] | |
FROM 'C:\Users\User\Desktop\Designation.csv' | |
WITH ( | |
FIELDTERMINATOR = ',', | |
ROWTERMINATOR = '\n', | |
FIRSTROW = 2 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment