I have a table call TblA with Id, FN, LN,Tel fields.
ID is Identity FK.
I have to import all the data from csv file. In csv file there is FN, LN and Tel values. So how can i pass ID identity value using BLUK
BULK
INSERT tblA
FROM 'd:\Db_Backup\CSV\impdata.csv'
WITH
(FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)