Is there any way to get SQL Server result in charset different from the native database encoding?
I mean something like "set names" which is used by MySQL.
Is there any way to get SQL Server result in charset different from the native database encoding?
I mean something like "set names" which is used by MySQL.
You can do this on a per column basis
SELECT COLUMN Collate CollationName
From Table
What is the column type of your data? Is it varchar or nvarchar?
To get results in Unicode, simply cast varchar columns as nvarchar: SELECT CAST(Column AS nvarchar(size)) FROM Table