Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
gmuser
Starting Member
3 Posts |
Posted - 2008-03-25 : 06:49:13
|
hi everyone, i am new to this forum and to sql server. using sql 2000. i want to make transactions between 2 databases (both on sql server) on a daily basis. some data could be written in Arabic format. - the column data type is ntext - collision : "sql_latin1_general1_CP1_CI_AS". My first question is: Are their any tools in sql server that can do it? (i would be grateful if you can give me a link for a document that can help me with this issue)second: what settings i need to change in order to include arabic format in a specific column.thank you for your help |
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2008-03-25 : 22:48:54
|
1. You can do that via linked server, get details from sql books online.2. You can store them in unicode columns like ntext, need N in front of string be inserted like N'xxxx'. |
 |
|
|
|
|