This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Hi,
My problem in SQL server 2008
I've database that has many tables
when I try in input Arabic data in some table, after I click 'Enter' I see the data like this: '?????????'
It meens the is't support arabic
if you can help me please
thanks
Arabic is supported.
a) use datatypes that supports unicode e.g. nvarchar or nchar or nvarchar(max)
b) when you insert data make sure it is preceded with N (National Character)
The following works in SQL 2008
create table test (data nvarchar(100) ) GO insert into test (data) values (N'مرحبا') Go select * from test
yes it's working
thank you sooo much :)
regards