I have a raw text file where the data appears correct.
However, after I bulk insert the data into my table random spaces are replaced with á.
Before from text file: American Science and Engineering, Inc.
After from dbo.2013_APRIL: American Science and Engineering,áInc.
Any suggestions on why this might be occuring? Insert statement is below....
BULK
INSERT SOURCE_DB.DBO.2013_APRIL
FROM 'C:\Users\a02919a\Desktop\2013_APRIL.txt'
WITH
(
FIELDTERMINATOR = '\t',
ROWTERMINATOR = '\n',
MAXERRORS = 10,
BATCHSIZE = 10,
ERRORFILE = 'C:\Users\a02919a\Desktop\2013_APRIL_errors.txt'
)