[ms sql] How to add new table to merge replication ?
am 12.07.2007 10:49:22 von Szaki
Hi,
How to add new table to merge replication ?
When I do this in Enterpriise Manager i got an error:
Server: Msg 2758, Level 16, State 1, Procedure sp_addmergearticle,
Line 466
RAISERROR could not locate entry for error 20085 in sysmessages.
What is wrong ?
Thank for any help
Luk
Re: How to add new table to merge replication ?
am 13.07.2007 09:16:58 von Damien
On Jul 12, 9:49 am, szaki wrote:
> Hi,
> How to add new table to merge replication ?
>
> When I do this in Enterpriise Manager i got an error:
> Server: Msg 2758, Level 16, State 1, Procedure sp_addmergearticle,
> Line 466
> RAISERROR could not locate entry for error 20085 in sysmessages.
>
> What is wrong ?
>
> Thank for any help
>
> Luk
The handy thing with that procedure is that you can open it up and
look down to the line number, and read the comments, and maybe get an
idea of what the problem is, even if the error message is missing.
Strangely, I can't find it raising 20085 at that line number - on SQL
2000 SP 4. But at that line, there is a check that all articles
contain a column marked with the rowguidcol property (and raising
error 20086). So, is that what's wrong with your table?
Damien