show/hide this revision's text 3 added 26 characters in body

This is a BAD situation to be in. Anything where you don't control the collation (e.g. SELECT INTO a temporary table) will break when you try to do anything involving varchars. The server default collation will trump anything where you don't explicitly coerce the collation, which will be most if not all of your existing stored procedure code.

The normal solution to this problem is to reinstall the SQL Server instance with the correct collation. Yes, you really do need to do that. My knowledge of this is secondhand, but I understand (from someone who got MS technical support involved in this issue) is that it is technically possible to change the default collation on a SQL Server instance but the process is technical and error prone, and making a mistake can leave the server in an unusable state. Apparently this procedure is not officially supported by Microsoft and the recommended procedure is to reinstall the SQL Server instance.

show/hide this revision's text 2 added 462 characters in body

This is a BAD situation to be in. Anything where you don't control the collation (e.g. SELECT INTO a temporary table) will break when you try to do anything involving varchars. The server default collation will trump anything where you don't explicitly coerce the collation, which will be most if not all of your existing stored procedure code.

The normal solution to this problem is to reinstall the SQL Server instance with the correct collation. Yes, you really do need to do that. My knowledge of this is secondhand, but I understand (from someone who got MS technical support involved in this issue) is that it is technically possible to change the default collation on a SQL Server instance but the process is technical and error prone, and making a mistake can leave the server in an unusable state. Apparently this procedure is not officially supported by Microsoft and the recommended procedure is to reinstall the SQL Server instance.

show/hide this revision's text 1

This is a BAD situation to be in. Anything where you don't control the collation (e.g. SELECT INTO a temporary table) will break when you try to do anything involving varchars. The server default collation will trump anything where you don't explicitly coerce the collation, which will be most if not all of your existing stored procedure code.

The normal solution to this problem is to reinstall the SQL Server instance with the correct collation. Yes, you really do need to do that.