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.

 All Forums
 SQL Server 2008 Forums
 SQL Server Administration (2008)
 Sql server language support

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:
-- column
SELECT Collation_name FROM INFORMATION_SCHEMA.[COLUMNS]
WHERE TABLE_NAME = 'YourTableName' AND COLUMN_NAME = 'YourColumnName';

-- database
SELECT 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.
Go to Top of Page
   

- Advertisement -