Hello,
when you want to query Unicode data you need use 'N' prefix.
For example: select * from table where column = N'Unicode_string'
Is it possible to configure SQL Server to always use Unicode string compare?
I mean without 'N' prefix. select * from table where column = 'Unicode_string'