Hi friends,

I want to insert bulk data in my table. I am using the below query. But it giving exception. Could not Bulk Insert:File 'C:\ip-to-country.csv' does not exist.

BULK
INSERT tblAllCountryName
FROM 'C:\ip-to-country.csv'
WITH
(

FIELDTERMINATOR=',',
ROWTERMINATOR='\n'
)
GO
How to solve this proble. Could you please tell me? Hope your's reply soon.

Thanks & Regards