你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Set-AzSqlDatabaseFailoverGroup
修改Azure SQL 数据库故障转移组的配置。
语法
Set-AzSqlDatabaseFailoverGroup
[-ServerName] <String>
[-FailoverGroupName] <String>
[-FailoverPolicy <FailoverPolicy>]
[-GracePeriodWithDataLossHours <Int32>]
[-AllowReadOnlyFailoverToPrimary <AllowReadOnlyFailoverToPrimary>]
[-PartnerServerList <System.Collections.Generic.List`1[System.String]>]
[-ReadOnlyEndpointTargetServer <String>]
[-ResourceGroupName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
此命令修改Azure SQL 数据库故障转移组的配置。 故障转移组的主服务器应用于执行命令。 若要控制组中的数据库集,请改用“Add-AzSqlDatabaseToFailoverGroup”和“Remove-AzSqlDatabaseFromFailoverGroup”。 在故障转移组功能的预览期间,“-GracePeriodWithDataLossHours”参数仅支持大于或等于 1 小时的值。
示例
示例 1
$failoverGroup = Set-AzSqlDatabaseFailoverGroup -ResourceGroupName rg -ServerName primaryserver -FailoverGroupName fg -FailoverPolicy Automatic -GracePeriodWithDataLossHours 1
将故障转移组的故障转移策略设置为“自动”。
示例 2
$failoverGroup = Get-AzSqlDatabaseFailoverGroup -ResourceGroupName rg -ServerName primaryserver -FailoverGroupName fg | Set-AzSqlDatabaseFailoverGroup -FailoverPolicy Manual
在故障转移组中通过管道将故障转移组的故障转移策略设置为“手动”。
参数
-AllowReadOnlyFailoverToPrimary
辅助服务器上的中断是否应触发只读终结点的自动故障转移。
类型: | AllowReadOnlyFailoverToPrimary |
接受的值: | Enabled, Disabled |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-FailoverGroupName
Azure SQL 数据库故障转移组的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-FailoverPolicy
Azure SQL 数据库故障转移组的故障转移策略。
类型: | FailoverPolicy |
接受的值: | Automatic, Manual |
Position: | Named |
默认值: | Manual |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-GracePeriodWithDataLossHours
如果在主服务器上发生中断,则启动自动故障转移之前的间隔。 这表明Azure SQL 数据库在宽限期到期之前不会启动自动故障转移。 请注意,使用 AllowDataLoss 选项执行故障转移操作可能会导致数据丢失,因为异步同步的性质。
类型: | Int32 |
Position: | Named |
默认值: | 1 |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-PartnerServerList
故障转移组中的合作伙伴服务器列表(0 台服务器的空列表)。
类型: | List<T>[String] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ReadOnlyEndpointTargetServer
只读终结点的目标服务器的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ResourceGroupName
资源组的名称。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ServerName
故障转移组的主Azure SQL 数据库服务器的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |