I have finished the install IBM Control Desk 7.6.1 on database MS SQL 2014
I have selected in the installation wizard language English and Arabic
when I select Arabic in the login page I found all Arabic words like ?????
I already added "&charset=windows-1256" in maximo.properties
when I insert or update value directly in the database with Arabic characters it converts to question marks like
عربي I found it ؟؟؟؟
Asked
Active
Viewed 324 times
0

HussinMhmode
- 35
- 8
-
Looks like a `varchar` *somewhere*, or the wrong collation. Where, is a very different question, and we don't have the information to tell you. – Thom A Oct 28 '19 at 11:50
-
Yes Larnu I have varchar columns like 'description' is varchar (200) – HussinMhmode Oct 28 '19 at 11:55
-
1Well there's your problem. You can't store unicode characters in a `varchar`. – Thom A Oct 28 '19 at 11:58
-
maybe yes but I have an issue in the database with IBM Control desk – HussinMhmode Oct 28 '19 at 12:01
-
Well, yes... `DECLARE @MyVariable varchar(200) = N'عربي'; SELECT @MyVariable;` is going to return `'????'`. You need to change the data type of your column. – Thom A Oct 28 '19 at 12:04
-
Ok, sir, it is good but my issue in the whole of the database – HussinMhmode Oct 28 '19 at 12:22
-
1If you need to store Arabic characters, then you need to ensure every column that could store those characters is an `nvarchar`; that means changing the datatype of all of them. I'm afraid, however, that any data that has already been inserted has already been lost though. – Thom A Oct 28 '19 at 12:23
-
1Not sure you can have Arabic and English on the same instance. Here's what IBM says about Maximo which is built on the same software foundation : https://www.ibm.com/support/knowledgecenter/en/SSLKT6_7.6.1/com.ibm.mam.inswl.doc/install/t_ccmdb_manconfigdbsqlserver.html – JPTremblay Oct 28 '19 at 20:41
-
1@HussinMhmode Did you look at this one? Same issue as yours. https://stackoverflow.com/questions/42261350/maximo-7-6-sql-server-2014-chinese-or-thai-characters – JPTremblay Nov 01 '19 at 19:40
-
**The issue was solved** Thank you for everyone help me, Here's what I have learned to solve the problem**حل مشكلة ظهور الحروف العربية على شكل علامات استفهام في SQL Server** [https://www.mobarmijoun.com/2014/05/sql-server.html] and **Manually configuring Microsoft SQL Server 2012**[https://www.ibm.com/support/knowledgecenter/en/SSLKT6_7.6.1/com.ibm.mam.inswl.doc/install/t_ccmdb_manconfigdbsqlserver.html] – HussinMhmode Nov 14 '19 at 22:11
1 Answers
0
The issue was solved Thank you for everyone help me
- حل مشكلة ظهور الحروف العربية على شكل علامات استفهام في SQL Server https://www.mobarmijoun.com/2014/05/sql-server.html
- Manually configuring Microsoft SQL Server 2012 https://www.ibm.com/support/knowledgecenter/en/SSLKT6_7.6.1/com.ibm.mam.inswl.doc/install/t_ccmdb_manconfigdbsqlserver.html

HussinMhmode
- 35
- 8