Hello,
We are trying to set up AlwaysOn on SQL Server 2016 (13.0.1601.5) with SQLServer Management Studio.
When we want to add a database to the availability group, we check the Full option and a network share to synchronize the database.
But when we finish the wizard, the database is just join to the availability group, no backup are done and no restore to the secondary. At the end of the wizard when we look at the generated script this is want we got :
--- YOU MUST EXECUTE THE FOLLOWING SCRIPT IN SQLCMD MODE.:Connect server\instance
USE [master]
GO
ALTER AVAILABILITY GROUP [dag]
ADD DATABASE [test];
GO
GO
It looks like a bug in the Add database wizard.
Does somebody have seen the same issue ?
Thank you,