專用 SQL 集區 (原為 SQL DW) 的使用者定義還原點
在本文中,您將了解如何使用 PowerShell 和 Azure 入口網站,在 Azure Synapse Analytics 的專用 SQL 集區 (原為 SQL DW) 建立新的使用者定義還原點。
透過 PowerShell 建立使用者定義還原點
若要建立使用者定義還原點,請使用 New-AzSqlDatabaseRestorePoint PowerShell Cmdlet。
- 開始前,請務必安裝 Azure PowerShell。
- 開啟 PowerShell。
- 連接到您的 Azure 帳戶,然後列出與您帳戶關聯的所有訂用帳戶。
- 選取包含要還原之資料庫的訂用帳戶。
- 建立即時複製資料倉儲的還原點。
$SubscriptionName="<YourSubscriptionName>"
$ResourceGroupName="<YourResourceGroupName>"
$ServerName="<YourServerNameWithoutURLSuffixSeeNote>" # Without database.windows.net
$DatabaseName="<YourDatabaseName>"
$Label = "<YourRestorePointLabel>"
Connect-AzAccount
Get-AzSubscription
Set-AzContext -SubscriptionName $SubscriptionName
# Create a restore point of the original database
New-AzSqlDatabaseRestorePoint -ResourceGroupName $ResourceGroupName -ServerName $ServerName -DatabaseName $DatabaseName -RestorePointLabel $Label
- 查看所有現有還原點的清單。
# List all restore points
Get-AzSqlDatabaseRestorePoint -ResourceGroupName $ResourceGroupName -ServerName $ServerName -DatabaseName $DatabaseName
透過 Azure 入口網站建立使用者定義還原點
您也可以透過 Azure 入口網站建立使用者定義還原點。
登入您的 Azure 入口網站帳戶。
前往您要建立還原點的專用 SQL 集區 (原為 SQL DW)。
在左側窗格選取 [概觀],然後選取 [+ 新增還原點]。 如果 [新增還原點] 按鈕未啟用,請確定專用 SQL 集區 (原為 SQL DW) 並未暫停。
指定使用者定義還原點的名稱,並按一下 [套用]。 使用者定義還原點有七天的預設保留期間。