从geobackup恢复azsqldatabase到其他订阅和区域

发布于 2025-01-17 14:40:37 字数 354 浏览 0 评论 0原文

我们有一组天蓝色生产数据库,需要为其规划灾难恢复。这意味着我们需要能够证明,如果我们的主 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

り繁华旳梦境 2025-01-24 14:40:37

您可以使用 PowerShell 和 azure 门户进行恢复和备份

使用 Azure 门户执行异地还原操作。

登录到 Azure 门户 ->浏览 Azure SQL Server ->创建SQL数据库->选择备份->浏览数据库->单击“确定”

参考 1

使用 Powershell 执行异地还原操作

  1. 登录门户

  2. 打开 CloudShell PowerShell 控制台

  3. 列出订阅。如果您的帐户有多个订阅,请列出您拥有数据库的预期订阅

  4. 使用通过管道传输到Get-AzSubscription输出设置订阅 ID >Set-AzContext

  5. 将地理备份详细信息获取到指定数据库 SSISDB 的变量 $geobackups

  6. 通过列出目标资源组名称、目标服务器和目标数据库来准备还原,然后

    Set-AzContext -SubscriptionId $subscriptionId
    
  7. 在本例中,SSISDB 还原到目标 Azure SQL 数据库。

    $resourceGroupName= 'xxxxx'
    $服务器名称='xxxxx'
    $TargetResourceGroup='xxxxx'
    $TargetServer='azuresqlxxxx'
    $TargetDatabaseName='SSISDB_Target'
    $GeoBackups = Get-AzSqlDatabaseGeoBackup -ResourceGroupName 
    $resourceGroupName -服务器名称 $服务器名称
    $GeoBackups | $GeoBackups Where-Object {$_.DatabaseName -eq "SSISDB"}
    ($GeoBackups |Where-Object {$_.DatabaseName -eq "SSISDB"}).ResourceId
    还原-AzSqlDatabase -FromGeoBackup -ResourceGroupName 
    $TargetResourceGroup -ServerName $TargetServer -TargetDatabaseName 
    $TargetDatabaseName -ResourceId ($GeoBackups |Where-Object 
    {$_.DatabaseName -eq "SSISDB"}).ResourceId
    

请参考此链接 了解更多信息

You can use both PowerShell and azure portal for restore and Backups

Perform a geo-restore operation using Azure Portal.

Log in to the Azure portal -> Browse the Azure SQL Server -> Create a SQL database -> Select a backup -> Browse the database -> Click OK

reference 1

Perform a geo-restore operation using Powershell

  1. Log in to the portal

  2. Open the CloudShell PowerShell console

  3. List the subscription. If your account has multiple subscriptions, then list the intended subscription where you have the database

  4. Set the subscription Id using Get-AzSubscription output piped to Set-AzContext.

  5. Get the geo-backups details into the variable $geobackups for the specified database SSISDB

  6. Prepare the restore by listing the target resource group name, target server and target database and

    Set-AzContext -SubscriptionId $subscriptionId
    
  7. In this case, the SSISDB restored to the target Azure SQL database.

    $resourceGroupName= 'xxxxx'
    $ServerName='xxxxx'
    $TargetResourceGroup='xxxxx'
    $TargetServer='azuresqlxxxx'
    $TargetDatabaseName='SSISDB_Target'
    $GeoBackups = Get-AzSqlDatabaseGeoBackup -ResourceGroupName 
    $resourceGroupName -ServerName $ServerName
    $GeoBackups | Where-Object {$_.DatabaseName -eq "SSISDB"}
    ($GeoBackups | Where-Object {$_.DatabaseName -eq "SSISDB"}).ResourceId
    Restore-AzSqlDatabase -FromGeoBackup -ResourceGroupName 
    $TargetResourceGroup -ServerName $TargetServer -TargetDatabaseName 
    $TargetDatabaseName -ResourceId ($GeoBackups | Where-Object 
    {$_.DatabaseName -eq "SSISDB"}).ResourceId
    

Please refer this link for more information

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文