Hi have a big database (~30GB) that I need to replicate to two server on two different locations. I enabled replication and enabled "allow initialize from backup" and did the following steps:
- backup the database on master server
- copy backup file to server1.
- Restore the database on server1
- Add the subscription on the master server.
Replication from master server to server1 is working.
- took a fresh backup on master server.
- copy and restore on server2
- Add subscriber on server2 (using sp_addsubscription)
Warning: The distribution agent job has been implicitly created and will run under the SQL Server Agent Service Account. Job 'XXX-181' started successfully. Msg 21397, Level 16, State 1, Procedure sp_MSsetupnosyncsubwithlsnatdist, Line 248 The transactions required for synchronizing the nosync subscription created from the specified backup are unavailable at the Distributor. Retry the operation again with a more up-to-date log, differential, or full database backup. The Subscriber was dropped.
What an I doing wrong? do I must use the same backup file for both servers? Thanks