• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Question about MSSQL Replication

Hmongkeysauce

Senior member
Let's say I want to set up transactional replication using MSSQL 2008, having the publisher, distributor, and subscriber on different physical servers. Without making any modifications to the client application, does replication help spread the read load (SELECT queries) among the publisher and subscriber?
 
For anyone accessing the subscriber, the select queries would be executed against the subscriber. The only load between the subscriber and the publisher would be the replication.
 
For anyone accessing the subscriber, the select queries would be executed against the subscriber. The only load between the subscriber and the publisher would be the replication.

Yea, to my understanding (having only really studied sql 2000) is that load balancing like that will only occur if you have a clustered setup. Your data sources are going to be defined to hit a specific server, regardless if its a subscriber, publisher, etc.

Replication does not have any inherit load balancing.
 
As TechBoyJK says, clustering and replication aren't the same thing. Queries will be executed on whichever server that user picks.
 
Back
Top