I'm having problems with the syntax of the statement below. It keeps giving me a truncation error, even though the datatype in the table (varchar) is plenty long enough. It's supposed to pull data from an excel file on a drive share. Any help is appreciated.
BULK
INSERT dbo.TableName
FROM '\\Servername\FolderName\FileName'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
Error: Bulk load data conversion error (truncation) for row 1, column 1 (ColumnName).