We are using Transaction Replication across 3 DB's. Data from DB1 needs to be replicated to DB2 from where it goes to DB3. There are no independent updates in DB2 and DB3. We are using SQL Server 2005 & Push replication.
We need the replication to be in a single transaction. So, for an insert, the rows should be present in DB1, DB2 and DB3 or in none at all. There should not be a situation where the data is not replicated completely.
The MS-SQL docs are ambiguous about this feature. Does Transaction Replication provide this feature? If not, how can our requirement be met?
Thanks
We need the replication to be in a single transaction. So, for an insert, the rows should be present in DB1, DB2 and DB3 or in none at all. There should not be a situation where the data is not replicated completely.
The MS-SQL docs are ambiguous about this feature. Does Transaction Replication provide this feature? If not, how can our requirement be met?
Thanks
Comment