show/hide this revision's text 2 tags
show/hide this revision's text 1

SQL Server 2005 collation issue

Hello everyone,

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,

select table1column1 + table2column2 from ...

My question is, how to change the collation of a table without destroying the data of the table?

thanks in advance, George