SQL Server 2000 Replication Performance

  • We have a production sql server 2000 with a db (about 90G) running on NT.

    Some users are running queries directly on the server.

    We need to make a copy from that db (on the smae or another machine), probably a replication, only for users to run queries. What is the best solution?

    Thanks,

  • If you want the latest data, the best would be to use transactional replication to another server where the users can run their reports. If you do not mind if the data is a bit old, you could set up a log shipping process. This could act as your DR plan as well.

    -Roy

  • Thanks Roy, log shipping is better in my case since replication puts more load to the server.

  • Are any of the queries these users will run going to be expected to modify the data in anyway?

    Joie Andrew
    "Since 1982"

  • No, Just heavy SELECT queries!

  • Yeah, then either log shipping or transactional replication. You can setup transactional replication not to have immediate updates to reduce some of the load on the box. If you have multiple machines available with good connectivity though, then I would setup two with transactional rep with immediate updates.

    Joie Andrew
    "Since 1982"

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply