9

I have a dimension to load which has a field called description with a data type of VARCHAR(50). Its collation is SQL_Latin1_General_CP1256_CS_AS and it contains Arabic data such as "مركز العقبة". Its source has the same type, size and collation, but every time I load the dimension this field gets updated! Why does this happen?

of the way
  • 47
  • 8
  • Every time when you load the same file, same record, the filed is updated? Have you tried to load exactly same file, same record multiple times? Have you compared the loaded new "description" with old value to see if there is difference? – ljh Mar 28 '13 at 07:58
  • 2
    yes i do that, thank you for your replay , the problem has been solved by changing database and the tables collation to Arabic_CI_AI_KS_WS – Osama Shatnawe Mar 28 '13 at 09:45
  • 2
    You should post your solution as an answer and accept it -- on Stack Overflow it's fine to answer your own questions. – Matt Gibson Sep 24 '15 at 07:53

1 Answers1

1

You should make sure that the collation of both your database and the tables is the same. Specifically you should set them both to Arabic_CI_AI_KS_WS as your comment suggests.

danjuggler
  • 1,261
  • 2
  • 21
  • 38