Hotspot Question
You have an Azure subscription that contains two Azure SQL Database servers named lpqd0zbr8y
and bk0b8kf65. lpqd0zbr8y contains a database named Orders. You need to implement active georeplication for the Orders database. Which command should you run? To answer, select the
appropriate options in the answer area.

Explanation:
https://msdn.microsoft.com/en-us/library/dn720220.aspx
References:
https://docs.microsoft.com/en-us/powershell/module/azure/start-azuresqldatabasecopy?view=azuresmps-4.0.0
The online continuous copy is used to configure Active Geo-Replication for Azure SQL Database. The offline continuous copy is used to configure Standard Geo-Replication for Azure SQL Database.
PS C:\> Start-AzureSqlDatabaseCopy -ServerName “lpqd0zbr8y” -DatabaseName “Orders” -PartnerServer “bk0b8kf65” -ContinuousCopy
0
0