Quantcast
Channel: SQL Server Replication forum
Viewing all articles
Browse latest Browse all 4054

SQL Server 2008 R2 native replication with Column Level Collation

$
0
0

In my SQL Server 2008 R2 environment -

Created a 'source' and 'target' database and altered the database collation as follows -

In my SQL Server 2008 R2 environment -

Created a 'source' and 'target' database and altered the database collation as follows -

use master

go

ALTERDATABASE source

COLLATE Chinese_PRC_CI_AS

GO

ALTERDATABASE target

COLLATE Chinese_PRC_CI_AS

GO

I created the below table in my source and target databases.

createtable dbo.tcolcs1(

    c0 int notnullprimarykey,

    c1 varchar(30)collate SQL_Latin1_General_Cp1_CI_AS,

    c2 char(30)collate SQL_Latin1_General_Cp1_CI_AS,

    c3 text collate SQL_Latin1_General_Cp1_CI_AS,

    c4 nvarchar(30)collate SQL_Latin1_General_Cp1_CI_AS,

    c5 nchar(30)collate SQL_Latin1_General_Cp1_CI_AS,

    c6 ntext collate SQL_Latin1_General_Cp1_CI_AS,

    cA varchar(30)collate Chinese_PRC_CI_AS,

    cB char(30)collate Chinese_PRC_CI_AS,

    cC text collate Chinese_PRC_CI_AS,

    cD nvarchar(30)collate Chinese_PRC_CI_AS,

    cE nchar(30)collate Chinese_PRC_CI_AS,

    cF ntext collate Chinese_PRC_CI_AS

)

go

I have inserted the below record in my source database.

insertinto dbo.tcolcs1values(10, nchar(0x00c4),nchar(0x00c4),'A',nchar(0x00c4),'B', nchar(0x00c4),NCHAR(0x4EBC),NCHAR(0x4EBC),NCHAR(0x4EBC),NCHAR(0x4EBC),NCHAR(0x4EBC),NCHAR(0x4EBC))

Just for information, character '0x00c4' is available in Latin1 code page but does not exist in Chinese_PRC_CI_AS code page.

Once the SQL Server replication does its job, I found the below record in target database.

c0  c1  c2  c3  c4  c5  c6  cA  cB  cC  cD  cE  cF

10 ?  ?   A  Ä   B  Ä         

Now, the problem is that SQL Server is not replicating the column C1 and C2 correctly. Both columns are having latin1 collation and character '0x00c4' exists in Latin code page.

My questions -

1. Is this a limitation of SQL Server or any specific settings need to be enabled ?

2. Does SQL Server native replication use ODBC or OLEDB ? How can I know this ?





Viewing all articles
Browse latest Browse all 4054

Latest Images

Trending Articles



Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>