SQL Server 2005 collation issue - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:22:50Zhttp://stackoverflow.com/feeds/question/844896http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/844896/sql-server-2005-collation-issue0SQL Server 2005 collation issueGeorge22009-05-10T07:50:15Z2009-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#8449035Answer by u07ch for SQL Server 2005 collation issueu07ch2009-05-10T08:01:05Z2009-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>