I have a csv file and am trying to insert it into a table
it doesn't error it just says 0 rows affected. I am signed on to SQL with SQL Authentication
it doesn't error it just says 0 rows affected. I am signed on to SQL with SQL Authentication
Code:
BULK INSERT database.dbo.table
FROM '\\Studebaker\itpmdocs\Business_Proc\Cheque\Test_Subsequent.csv'
with
(
firstrow = 2,
fieldterminator = '\t',
rowterminator = '\n'
)