How do you determine the collation of a database in SQL 2005, for instance if you need to perform a case-insensitive search/replace?
|
|
Use the following SQL to determine the collation of a database: SELECT DATABASEPROPERTYEX('{database name}', 'Collation') SQLCollation; |
||
|
|
|
|
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: 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: |
||
|
|
|
|
Remember, that individual columns can override the database collation:
|
||
|
|
