Link to home
Start Free TrialLog in
Avatar of benoitmarcotte
benoitmarcotte

asked on

SQL Server 2005 multiple languages/characters

Is it possible to store multilple languages/characters (romance, russian, arabic, chinese) in the same column of the same table in sql server 2005? if yes, what should I look into?

Thanks
n/a

Open in new window

Avatar of Aneesh
Aneesh
Flag of Canada image

datatype - nvarchar and choose a collation to the one matching the language
if you want to store multiple languages on the same column go for the nvarchar
Avatar of benoitmarcotte
benoitmarcotte

ASKER

Thanks. I did nvarchar but I have a limited number of collation and don't know which one I should choose.
it should be multiple languages in the same column. Is there a collation that could accomodate that?
None of the collation settings affects the way data is stored. They only determine how it is compared and sorted.
http://technet.microsoft.com/en-us/library/ms143726(SQL.90).aspx
thanks again. I tested one entry submitted in Arabic so far and what is stored in the db are a string of interrogation marks. I take it that the problem isn't with the field settings in the db but in the coding of the ASP or the server configuration?
it is encoding from the ASP
so should I ask the question to ASP people or do you have any idea what I should be looking at in the ASP?
ASKER CERTIFIED SOLUTION
Avatar of Aneesh
Aneesh
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial