.lstファイルからテーブル名AxisATMにデータを挿入するクエリを作成しましたが、挿入しようとするとエラーが発生します。
最初を除くすべての行をLSTファイルから削除すると、1行が変更されたという成功メッセージが表示されます。
Msg 4866, Level 16, State 1, Line 1
The bulk load failed. The column is too long in the data file for row 1, column 36. Verify that the field terminator and row terminator are specified correctly.
Msg 7399, Level 16, State 1, Line 1
The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.
Msg 7330, Level 16, State 2, Line 1
Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
クエリ:-
BULK
INSERT dbo.ATMAxis
FROM 'c:\AGS_WINCORE_120901.lst'
WITH
(
FIELDTERMINATOR = '|',
ROWTERMINATOR = 'CHAR(13)'
)
GO
AGS_WINCORE_120901.lst:-
PRO1|......|00000000000|0| {Like it has 36 '|' separators}
Notepad++を使用して行末文字がCRLFであることを知っています