witam,
nie mogę importować pliku csv do tabeli w bazie danych.
dla przykładu:
CREATE TABLE tabelka(
applicationID varchar(255) NULL,
)
--Import danych
BULK
INSERT tabelka
FROM 'C:\Users\Przemek\Desktop\csv to sql\products\1.csv'
with (
FIRSTROW = 2,
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\r'
);
problem jest z odseparowaniem wierszy od siebie. Gdy uruchamiam plik csv np w notatniku to wszystko jest zlane.
Żaden separator tylu \r \n nie działa :/
Msg 4866, Level 16, State 8, Line 8
The bulk load failed. The column is too long in the data file for row 1, column 1. Verify that the field terminator and row terminator are specified correctly.
Proszę o pomoc