SQL Server 2005 collation issue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:22:50Z http://stackoverflow.com/feeds/question/844896 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/844896/sql-server-2005-collation-issue 0 SQL Server 2005 collation issue George2 2009-05-10T07:50:15Z 2009-05-10T08:47:47Z <p>Hello everyone,</p> <p>I have two tables, and they are using different collations. It is not allowed to concatenate columns from tables with different collations, for example the following SQL is not allowed,</p> <pre><code>select table1column1 + table2column2 from ... </code></pre> <p>My question is, how to change the collation of a table without destroying the data of the table?</p> <p>thanks in advance, George</p> http://stackoverflow.com/questions/844896/sql-server-2005-collation-issue/844903#844903 5 Answer by u07ch for SQL Server 2005 collation issue u07ch 2009-05-10T08:01:05Z 2009-05-10T08:01:05Z <p>You can change columns collation on the fly if you need to.</p> <p>E.g.</p> <pre><code>select table1column1 collate database default + table2column2 collate database default from ... </code></pre> <p>"Database default" could be whatever the collation you are wanting to use.</p> <p>You can alter the collation of a column permanently with </p> <pre><code>ALTER TABLE ... ALTER COLUMN Table1Column1 varchar(50) COLLATE Latin1_General_CI_AS NOT NULL GO </code></pre>