I have CSV file having thousands of rows consisting this data. Is it possible to create SSIS package or any other alternative to load Non-English characters?
Parameterized queries are typically used in SSIS and application code. This will preserve non-ANSI characters as long as parameter definitions specify data type nvarchar
. The N
prefix needed in T-SQL constants to denote a string of national characters does not apply to parameters.
SSIS will detect the nvarchar
column type at design time with a OLE DB destination and parameterize the bulk insert accordingly.