show/hide this revision's text 2 added 317 characters in body

I would say it's definately possible.

I would look at:

  • Your network
    Run ping commands between the two servers and see if there are any issues
    If the servers are next to each other you should have < 1 ms.
  • Bottlenecks on the server
    This could be network traffic (volume)
    Like network cards not being configured for 1GB/sec
    Anti-virus or other things
  • Do some analysis on some queries and see if you can identify indexes or locking which might be a problem
  • See if any of the selects on the read database might be blocking the writes.
    Add with (nolock), and see if this makes a difference on one or two queries you're analyzing.

Essentially you have a complicated system which you have a problem with, you need to determine which component is the problem and fix it.

Transactional replication is probably best if the reports / selects you need to run need to be up to date. If they don't you could look at log shipping, although that would add some down time with each import.

For data/log files, make sure they're on seperate drives so the performance is maximized.

show/hide this revision's text 1

I would say it's definately possible.

I would look at:

  • Your network
    Run ping commands between the two servers and see if there are any issues
    If the servers are next to each other you should have < 1 ms.
  • Bottlenecks on the server
    This could be network traffic (volume)
    Like network cards not being configured for 1GB/sec
    Anti-virus or other things
  • Do some analysis on some queries and see if you can identify indexes or locking which might be a problem
  • See if any of the selects on the read database might be blocking the writes.
    Add with (nolock), and see if this makes a difference on one or two queries you're analyzing.

Essentially you have a complicated system which you have a problem with, you need to determine which component is the problem and fix it.