I have a web app that is used on multiple continents. The underlying transaction DB is locking up when large reports are run. I want to:
- make a realtime of the SQL Server 2005 database to a reports DB
- direct all reporting to the reports DB
In theory this will prevent transaction locking for inserts and updates. It is OK if the reports DB gets locked temporarily as long as the transactions continue. The reports DB can receive the new transactions when it is under a lighter load. What is the best way to maintain a near realtime copy of the transaction DB? Should I use replication, mirroring or a combination of the two? What general guidelines I should follow?
Thanks!