Skip to content

Instantly share code, notes, and snippets.

@r1d3rzz
Created July 10, 2024 09:22
Show Gist options
  • Save r1d3rzz/b907d4816d135457ecf745e4e239d988 to your computer and use it in GitHub Desktop.
Save r1d3rzz/b907d4816d135457ecf745e4e239d988 to your computer and use it in GitHub Desktop.
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