I have a Persian CSV file and I need to read that with SQL bulk into the SQL server:
I wrote this bulk:
BULK INSERT TEMPFROM 'D:\t1.csv'WITH(FIELDTERMINATOR = ',',ROWTERMINATOR = '\n',CODEPAGE = '1256');
but that can not read UTF-8 encoding and read ی
character as ?
character.
How can I write that?