Bulk Insert doesn't insert any rows Bulk Insert doesn't insert any rows sql sql

Bulk Insert doesn't insert any rows


Ed Harper led me in the right direction: the row terminator was wrong.

So when I changed it to

ROWTERMINATOR = '0x0a' 

in BULK INSERT (instead of '\n') it started working.