I would recommend you study the use of transactional replication.
It sounds as if you want to implement a scenario similar to what we are currently implementing.
We use transactional replication (although in real time you most likely want to synchronize your environment with a less frequent schedule) to upload a copy of our live production database to another server for reporting purposes.
Offload reporting data is a common replication scenario and is described here in the Microsoft Replication documentation.
http://msdn.microsoft.com/en-us/library/ms151784.aspx
Brent is right that there really is a configuration item needed for replication, along with security considerations that need to be addressed, however, in my opinion, there are a number of key benefits to using replication, including:
- Reduced latency compared to delivery journal.
- The ability to publish only Articles (tables) that are required for reporting.
- Reduced storage requirements.
- Less published data means less network traffic.
- Access your reporting data / database anytime.
For example, in our environment, we decided to replicate only specific tables (articles) from our production database, which we actually require for reporting.
I hope that what I have described is clear and makes sense, but please feel free to contact me if you have any questions.
source share