I have problem in bulk insert, please anyone help me
Msg 4861, Level 16, State 1, Line 1
Cannot bulk load because the file "D:\BESTTA 7\20200518_DLLD_3C.txt" could not be opened. Operating system error code 3 (The system cannot find the path specified)
This is my SQL statement:
BULK INSERT LLD2017_26032020.dbo.TRX_TRANSAKSI_3C
FROM 'D:\\BESTTA 7\20200518_DLLD_3C.txt' --location with filename
WITH
(
FIRSTROW = 2,
FIELDTERMINATOR = '|',
ROWTERMINATOR = '\n'
)
GO
SELECT *
FROM TRX_TRANSAKSI_3C ttt
WHERE jenis_rekening = '3C'
AND ttt.TGL_TRANSAKSI = '20200518'