SSIS and Collation
hi,
what happens if have source database collation sql_latin1_general_cp1_ci_as , target database collation latin1_general_ci_as ?
will ssis automatically convert destination collation ? can understand lookup , merge joins might fail, in case copying data.
constantijn
the issue copying data code page of collations. in case, both collations use code page 1252 no character conversion necessary.
select collationproperty(n'sql_latin1_general_cp1_ci_as', 'codepage'); select collationproperty(n'latin1_general_ci_as', 'codepage');
dan guzman, sql server mvp, http://www.dbdelta.com
SQL Server > SQL Server Integration Services
Comments
Post a Comment