+ Reply to Thread
Results 1 to 2 of 2

SQL 2000 Merge replication and CF 2.0

  1. SQL 2000 Merge replication and CF 2.0

    Hi all

    I`m developing an application who works with SQL Server 2000 merge
    replication and developed with VS 2005. I want to configure database
    replication, but all information is for SQL 2005. Is there any way to
    configure SQL publication and replication or anyone knows about a tutorial?

    Also I want to know wich rows has been created in the device after
    synchronizating the device. Is there any property in the row or method to
    know this?

    Thanks



  2. Re: SQL 2000 Merge replication and CF 2.0


    Setting up Merge replication.

    http://msdn2.microsoft.com/en-us/library/ms839425.aspx

    Checking stats. There are a few ways of doing this.
    check this for asynchronous data synchronization.
    http://msdn2.microsoft.com/en-us/library/2ysxae29.aspx


    There is some properties of the replication object that are populated after
    the sync.
    "Publisher changes = " + oReplication.PublisherChanges.ToString() +

    "\nPublisher conflicts = " + oReplication.PublisherConflicts.ToString() +

    "\nSubscriber changes = " + oReplication.SubscriberChanges.ToString();


    info on CE merge tables
    http://blogs.msdn.com/sqlservercompa...eplicated.aspx



    ink





    "Ricardo Alvarez" wrote in message
    news:eYX%23%23YCXHHA.5092@TK2MSFTNGP03.phx.gbl...
    > Hi all
    >
    > I`m developing an application who works with SQL Server 2000 merge
    > replication and developed with VS 2005. I want to configure database
    > replication, but all information is for SQL 2005. Is there any way to
    > configure SQL publication and replication or anyone knows about a
    > tutorial?
    >
    > Also I want to know wich rows has been created in the device after
    > synchronizating the device. Is there any property in the row or method to
    > know this?
    >
    > Thanks
    >




+ Reply to Thread