I have SQL Server on hosting, clients are mobile applications.
I have logic that user creates data and store it on server. Some of the data is text. However user can enter english, hebrew or any other languages his client supports.
Which Collation I need to specify to the tables to support all languages?
Regards
Yoav
you need to store it as nvarchar and make sure to prefix the text with N
example
output
The N before the string value tells SQL Server to treat it as unicode, notice that you get a question mark back when you don’t use N?
In terms of searching, take a look at Performance Impacts of Unicode, Equals vs LIKE, and Partially Filled Fixed Width