Search Results

0
votes
3answers
575 views

How do I determine the collation of a database in SQL 2005?

How do you determine the collation of a database in SQL 2005, for instance if you need to perform a case-insensitive search/replace? …
0
votes
5answers
674 views

How do I perform a case-sensitive search and replace in SQL 2000/2005?

In order to perform a case-sensitive search/replace on a table in a SQL 2000/2005 database, you must use the correct collation. How do you determine whether the default collation for a database is …
1
vote
2answers
129 views

How do I find out what collations are available in SQL 2000/2005

If I need to choose a collation mode to work with, how do I know what collations are available? …
1
vote

How do I determine the collation of a database in SQL 2005?

Use the following SQL to determine the collation of a database: SELECT DATABASEPROPERTYEX('{database name}', 'Collation') SQLCollation; …
0
votes

How do I perform a case-sensitive search and replace in SQL 2000/2005?

Determine whether the default collation is case-sensitive like this: select charindex('If the result is 0 you are in a case-sensitive collation mode', 'RESULT') A result of 0 indica …
1
vote

How do I find out what collations are available in SQL 2000/2005

Use this query to list the available collation modes: SELECT * FROM fn_helpcollations() …