vote up 0 vote down star
1

How do you determine the collation of a database in SQL 2005, for instance if you need to perform a case-insensitive search/replace?

flag

3 Answers

vote up 1 vote down

If you want to do a case-insensitive search and can't rely on the database's collation, you could always specifically request it for the query you're interested in. For instance:
SELECT TOP 1 FName, *
FROM People
WHERE FName LIKE '%mich%' COLLATE Latin1_General_CI_AI

I usually have the opposite problem, where I want the case sensitivity but don't have it in the database's collation, so I find myself using the Latin1_General_BIN collation quite a bit in my queries. If you don't already know, you can do:
SELECT *
FROM ::fn_helpcollations()
for a list of the available collations and descriptions of what they're for.

link|flag
vote up 0 vote down

Remember, that individual columns can override the database collation:

SELECT TABLE_NAME, COLUMN_NAME, COLLATION_NAME
FROM INFORMATION_SCHEMA.COLUMNS
link|flag
vote up 1 vote down check

Use the following SQL to determine the collation of a database:

SELECT DATABASEPROPERTYEX('{database name}', 'Collation') SQLCollation;

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.