I have a txt file (with a tab delimiter) that has almost 1200 entries. I perform a bulk insert operation to get data from a .txt file into a table that (structure) has already been created in the database. I do not know why mass insertion takes forever. Any suggestions on where / what / how to check what triggers this operation forever? Thank you I did this before and it worked fine. Any reasons?
BULK INSERT DataFromatltemp
FROM '\\abcd\Admin\temp\Copyatltemp07.txt'
WITH
(
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '\n'
)
GO
source
share