Additional SQL Server features and topics not covered by specific categories
Hi @TWeissenburg,
Thank you for your reaching out and welcome to Microsoft Q&A!
The portal indicates it is synching but we know it is not
The cause of this issue maybe the master database too busy for single replication worker to handle all of the changes. You need to cluster your tables, or you can try applying the latest transaction logs on the secondary server to see if that would kick-start the recovery process:
-- Remove database from Availability Group:
Alter Database [StackExchange.Bicycles.Meta] SET HADR OFF;
-- Apply t-logs to catch up. This can be done manually in SSMS or via:
RESTORE LOG [StackExchange.Bicycles.Meta] FROM DISK = '\\ny-back01\backups\SQL\_Trans\SENetwork_AG\StackExchange.Bicycles.Meta\StackExchange.Bicycles.Meta_LOG_20160217_033201.trn' WITH NORECOVERY;
-- Re-join database to availability group
ALTER DATABASE [StackExchange.Bicycles.Meta] SET HADR AVAILABILITY GROUP = [SENetwork_AG];
ALTER DATABASE [StackExchange.Bicycles.Meta] SET HADR RESUME;
If the method doesn't work, could you please post the detailed logs here to help us narrow down the issue? Thanks for your understanding. Your time and cooperation are much valued by us. We are looking forward to hearing from you to assist further.
What is the impact to the primary if we 'simply' remove the failover group entirely and rebuild it later?
A database that is included in a failover group is not dropped when the failover group is dropped. You can follow the steps in this article to remove the database in Failover Group.
- If a secondary failover group is dropped, any database previously included in the group loses read-only protection and becomes writable.
- If the secondary failover group is re-created from the same primary failover group as before, the databases in the group are overwritten by the databases in the primary failover group during the first refresh. These databases are read-only.
For more information, please refer to this official document.
Feel free to share your issues here if you have any concerns.
Best regards,
Lucy Chen
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our Documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
https://docs.microsoft.com/en-us/answers/support/email-notifications