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 |
pramod21
Yak Posting Veteran
64 Posts |
Posted - 2012-12-06 : 05:01:40
|
hi,i have stored the data in spanish language for one of our client and we able to save successfully. but while searching there is problem. we dont get the data. U have any idea or setting regarding the spanish language setting. which would help me in setting ??thanks. |
|
sunitabeck
Master Smack Fu Yak Hacker
5155 Posts |
Posted - 2012-12-06 : 06:56:25
|
How/what query are you using to search? It may be that the collations are different. You can find the collation of the column and collation of your database using the following:-- columnSELECT Collation_name FROM INFORMATION_SCHEMA.[COLUMNS]WHERE TABLE_NAME = 'YourTableName' AND COLUMN_NAME = 'YourColumnName';-- databaseSELECT DATABASEPROPERTYEX('YourDataseName', 'Collation') If they are different, post the query you are using and people on the forum should be able to suggest how to force the collations to match. |
|
|
|
|
|