从geobackup恢复azsqldatabase到其他订阅和区域
我们有一组天蓝色生产数据库,需要为其规划灾难恢复。这意味着我们需要能够证明,如果我们的主 Azure 区域出现故障,我们需要证明我们可以使用 Azure sql 备份将其恢复到不同区域的备用订阅中。
我已检查 Get-AzSqlDatabaseGeoBackup 是否返回所有数据库的有效对象。但是,我现在想使用 Restore-AzSqlDatabase -FromGeoBackup 选项将数据库还原到另一个订阅中的不同区域。
我认为我无法使用此命令,因为不存在执行此操作的选项。我说得对吗?
如果我无法使用该命令,如何将 Azure sql 备份恢复到不同的区域和订阅(希望使用 powershell,以便我们可以自动化它)?
谢谢
We have a set of azure production databases that we need to plan disaster recovery for. This means we need to be able to prove that should our primary Azure region fail, we need to prove that we can use Azure sql backups to restore into an alternative subscription into a different region.
I have checked that Get-AzSqlDatabaseGeoBackup returns an valid object for all the databases. However, i would now like to use Restore-AzSqlDatabase -FromGeoBackup options to restore a database to a different region in another subscription.
I don't think i can use this command, because the options don't exist to do it. Am i correct?
If i can't use that command, how can i restore Azure sql backups to a different region and subscription (hopefully using powershell so that we can automate it)?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 PowerShell 和 azure 门户进行恢复和备份
登录到 Azure 门户 ->浏览 Azure SQL Server ->创建SQL数据库->选择备份->浏览数据库->单击“确定”
登录门户
打开 CloudShell PowerShell 控制台
列出订阅。如果您的帐户有多个订阅,请列出您拥有数据库的预期订阅
使用通过管道传输到的Get-AzSubscription输出设置订阅 ID >Set-AzContext。
将地理备份详细信息获取到指定数据库 SSISDB 的变量 $geobackups
通过列出目标资源组名称、目标服务器和目标数据库来准备还原,然后
在本例中,SSISDB 还原到目标 Azure SQL 数据库。
请参考此链接 了解更多信息
You can use both PowerShell and azure portal for restore and Backups
Log in to the Azure portal -> Browse the Azure SQL Server -> Create a SQL database -> Select a backup -> Browse the database -> Click OK
Log in to the portal
Open the CloudShell PowerShell console
List the subscription. If your account has multiple subscriptions, then list the intended subscription where you have the database
Set the subscription Id using Get-AzSubscription output piped to Set-AzContext.
Get the geo-backups details into the variable $geobackups for the specified database SSISDB
Prepare the restore by listing the target resource group name, target server and target database and
In this case, the SSISDB restored to the target Azure SQL database.
Please refer this link for more information