Restoring a databse user

I'm new to working in SQL, so forgive my lack of terminology.
I have this database that stores sales conselors clients. One of the sales counselors is missing 1200 of his clients after synchronizing. (down to 694) When I look in the replicated database, it shows the full 1894 clients.

Is there a way to restore his database from the replicated

HELP


Answer this question

Restoring a databse user

  • DanTi

    When you say missing, do you mean one site has 1894 records and the other just 694
    Is this Merge replication Are there any filters or constraint violations involved
    Were the rows deleted on the other site

    However If your current aim is to get back all the rows and have 1894 rows at both the sites, you will need to dummy update (update col1=col1) all the 1894 rows (or atleast the missing 1200) rows and synchronize again. That way the sync should pick those changes when it runs the next time.

  • Restoring a databse user