Welcome to dbFreaks.com!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Non-Convergence SQL Server 2005

 
   Database Help (Home) -> Replication RSS
Next:  Updating a table with an index issue  
Author Message
Manu

External


Since: Dec 24, 2008
Posts: 2



(Msg. 1) Posted: Wed Dec 24, 2008 5:33 am
Post subject: Non-Convergence SQL Server 2005
Archived from groups: microsoft>public>sqlserver>replication (more info?)

I am using Merge Replcation. Everything works fine except One Table
Data in Only One Column of Some Rows in that table is different at
subscriber and publisher.

I am using Pull Model. and Row Level Tracking for the table.
There are no other triggers defined on that table.

All other columns have matching data on subscriber and publisher excet that
one column. Column type id varchar(50)

How can i resolve this issue?

 >> Stay informed about: Non-Convergence SQL Server 2005 
Back to top
Login to vote
Hilary Cotter3

External


Since: Aug 28, 2004
Posts: 458



(Msg. 2) Posted: Wed Dec 24, 2008 11:09 pm
Post subject: Re: Non-Convergence SQL Server 2005 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Can you post the schema of this problem table?

"Manu" wrote in message

>I am using Merge Replcation. Everything works fine except One Table
> Data in Only One Column of Some Rows in that table is different at
> subscriber and publisher.
>
> I am using Pull Model. and Row Level Tracking for the table.
> There are no other triggers defined on that table.
>
> All other columns have matching data on subscriber and publisher excet
> that one column. Column type id varchar(50)
>
> How can i resolve this issue?
>

 >> Stay informed about: Non-Convergence SQL Server 2005 
Back to top
Login to vote
Manu

External


Since: Dec 24, 2008
Posts: 2



(Msg. 3) Posted: Mon Dec 29, 2008 4:25 am
Post subject: Re: Non-Convergence SQL Server 2005 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The Schema is:-


CREATE TABLE [SD].[PIArticles](
[ButtonID] [uniqueidentifier] NULL,
[CurrencyID] [uniqueidentifier] NULL,
[CustStyleNo] [varchar](200) NULL,
[OurRefStyleNo] [varchar](1000) NULL,
[Qty] [decimal](25, 9) NULL,
[Rate] [decimal](25, 9) NULL,
[SFLineID] [uniqueidentifier] NULL,
[PIArticleID] [uniqueidentifier] NOT NULL,
[PIID] [uniqueidentifier] NULL,
[timestamp] [timestamp] NULL,
[STAType] [varchar](50) NULL,
[Size] [varchar](200) NULL,
[ArticleNo] [varchar](200) NULL,
[Color] [varchar](200) NULL,
[Holes] [varchar](200) NULL,
[Finish] [varchar](200) NULL,
[Laser] [varchar](200) NULL,
[TestStd] [varchar](50) NULL,
[TestStdID] [uniqueidentifier] NULL,
[UnitID] [int] NULL,
[UnitName] [varchar](50) NULL,
[QtyBase] [decimal](18, 9) NULL,
[PrintInUnit] [int] NULL,
[ShowInPending] [bit] NULL,
[ShowInPendingSetBy] [varchar](50) NULL,
[ShowInPendingChangeDate] [datetime] NULL,
[Blocked] [bit] NULL,
[BlockedBy] [varchar](50) NULL,
[BlockingRemarks] [varchar](500) NULL,
[BlockingDateTime] [datetime] NULL,
[Remarks] [varchar](200) NULL,
[SNo] [int] NULL,
[PIArticleRemarks] [varchar](500) NULL,
[FinalButtonGivenBy] [varchar](50) NULL,
[FinalButtonGivenDate] [datetime] NULL,
CONSTRAINT [PK_PIArticles] PRIMARY KEY CLUSTERED
(
[PIArticleID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY =
OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]


"Hilary Cotter" wrote in message

> Can you post the schema of this problem table?
>
> "Manu" wrote in message
>
>>I am using Merge Replcation. Everything works fine except One Table
>> Data in Only One Column of Some Rows in that table is different at
>> subscriber and publisher.
>>
>> I am using Pull Model. and Row Level Tracking for the table.
>> There are no other triggers defined on that table.
>>
>> All other columns have matching data on subscriber and publisher excet
>> that one column. Column type id varchar(50)
>>
>> How can i resolve this issue?
>>
>
 >> Stay informed about: Non-Convergence SQL Server 2005 
Back to top
Login to vote
Hilary Cotter3

External


Since: Aug 28, 2004
Posts: 458



(Msg. 4) Posted: Mon Dec 29, 2008 5:45 am
Post subject: Re: Non-Convergence SQL Server 2005 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

your problem is the timeststamp column in the middle of the table.

drop it and add it back in again, or set the UploadReadChangesPerBatch
setting to 1.

"Manu" wrote in message

> The Schema is:-
>
>
> CREATE TABLE [SD].[PIArticles](
> [ButtonID] [uniqueidentifier] NULL,
> [CurrencyID] [uniqueidentifier] NULL,
> [CustStyleNo] [varchar](200) NULL,
> [OurRefStyleNo] [varchar](1000) NULL,
> [Qty] [decimal](25, 9) NULL,
> [Rate] [decimal](25, 9) NULL,
> [SFLineID] [uniqueidentifier] NULL,
> [PIArticleID] [uniqueidentifier] NOT NULL,
> [PIID] [uniqueidentifier] NULL,
> [timestamp] [timestamp] NULL,
> [STAType] [varchar](50) NULL,
> [Size] [varchar](200) NULL,
> [ArticleNo] [varchar](200) NULL,
> [Color] [varchar](200) NULL,
> [Holes] [varchar](200) NULL,
> [Finish] [varchar](200) NULL,
> [Laser] [varchar](200) NULL,
> [TestStd] [varchar](50) NULL,
> [TestStdID] [uniqueidentifier] NULL,
> [UnitID] [int] NULL,
> [UnitName] [varchar](50) NULL,
> [QtyBase] [decimal](18, 9) NULL,
> [PrintInUnit] [int] NULL,
> [ShowInPending] [bit] NULL,
> [ShowInPendingSetBy] [varchar](50) NULL,
> [ShowInPendingChangeDate] [datetime] NULL,
> [Blocked] [bit] NULL,
> [BlockedBy] [varchar](50) NULL,
> [BlockingRemarks] [varchar](500) NULL,
> [BlockingDateTime] [datetime] NULL,
> [Remarks] [varchar](200) NULL,
> [SNo] [int] NULL,
> [PIArticleRemarks] [varchar](500) NULL,
> [FinalButtonGivenBy] [varchar](50) NULL,
> [FinalButtonGivenDate] [datetime] NULL,
> CONSTRAINT [PK_PIArticles] PRIMARY KEY CLUSTERED
> (
> [PIArticleID] ASC
> )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY =
> OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
> ) ON [PRIMARY]
>
>
> "Hilary Cotter" wrote in message
>
>> Can you post the schema of this problem table?
>>
>> "Manu" wrote in message
>>
>>>I am using Merge Replcation. Everything works fine except One Table
>>> Data in Only One Column of Some Rows in that table is different at
>>> subscriber and publisher.
>>>
>>> I am using Pull Model. and Row Level Tracking for the table.
>>> There are no other triggers defined on that table.
>>>
>>> All other columns have matching data on subscriber and publisher excet
>>> that one column. Column type id varchar(50)
>>>
>>> How can i resolve this issue?
>>>
>>
>
 >> Stay informed about: Non-Convergence SQL Server 2005 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Cannot Create Distribution Server on SQL Server 2005 SP1 - Group, I cannot create a Distribution Server on SQL Server 2005 SP1. When I right click on Replication and click "Configure Distribution" and hour glass appears for a minute, and then nothing happens. I get the same result if I try to cr...

Transfer Data Between SQL Server 2005 and SQL Server CE - I have some database tables in SQL Server 2005 and the same tables in a database in SQL Server CE running on a PocketPC device. Using ActiveSync, I am able to view the SQL Server CE database tables in the SQL Server 2005 Management Studio. Is there ...

Data Replication Options (SQL Server 2005) - We have a database approx 200 GB size. Approx 5-10 GB of data is modified on nightly basis (delete + bulk load) - no updates. Regarding bulk load, we use simple recovery mode. We want to have another server as a warm/cold backup (and read only ..

Merge Replication index contention in SQL Server 2005 - We are having problem with merge replication and causing deadlock and found following merge replication index causing contention with one user table index. objectname indexname index_id row_lock_count row_lock_wait_count block ..

Client provider for SQL Server 2005 Express Edition - Is there a client provider for SQL Express versions (like SqlCeClientSyncProvider for SQL Server Compact)? Can I use SQL Server 2005 Express Edition as a client and a server in synchronization with sync framework? Emile Petrus
   Database Help (Home) -> Replication All times are: Pacific Time (US & Canada)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]