Results 1 to 6 of 6

Thread: Synchronizing two MS SQL 2000 database server

  1. #1
    Join Date
    Mar 2004
    Posts
    2

    Synchronizing two MS SQL 2000 database server

    Hi All,

    I will have to setup two windows 2000 servers at separate locations. Each server will host the MS SQL 2000 database. The data on both database will need to be in sync in real time. Is it possible to do? If yes, any suggestions of how do do it?

    Thanks
    Khen

  2. #2
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    "real time" "real time" - not possible.

    Latency will always be there. (Network speed and traffic)

    SQL Server Features...
    1. Transactional Replication
    2. Log Shipping


    many third party tools are available too.

  3. #3
    Join Date
    Mar 2004
    Posts
    2
    Any documentation or good links?

    Thanks
    Khen

  4. #4
    Join Date
    Sep 2002
    Posts
    5,938
    Check sql books online and microsoft knowledge base.

  5. #5
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254

  6. #6
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    To keep two databases in synch you have to code your application to use distributed transaction. It makes sure that a transaction is not committed unless it is committed in both servers.

    A major drawback with this is, if your network link is down, you can't do anything.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •