I have a query which is working fine:
BULK INSERT ZIPCodes
FROM \'e:\\5-digit Commercial.csv\'
WITH
(
FIRSTROW = 2 ,
FIELDTERMINATOR = \',\',
You just try it out, I think you need to upload this CSV file directly to the 'E' drive. For that you need to have admin rights, I think, or ask someone who is in database administration.
create procedure dbo.InsertZipCode
AS
BEGIN
SET NOCOUNT ON;
BULK
INSERT ZIPCodes from 'e:\5-digit Commercial.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
END