< Back

Update-AzureRmSqlSyncMember

Tue Jan 29, 2019 10:11 pm

NAME Update-AzureRmSqlSyncMember



SYNOPSIS

Updates an Azure SQL Database Sync Member.





SYNTAX

Update-AzureRmSqlSyncMember [-ResourceGroupName] <String> [-ServerName] <String> [-DatabaseName] <String> [-SyncGroupName] <String>

[-DefaultProfile <IAzureContextContainer>] -MemberDatabaseCredential <PSCredential> -Name <String> [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

The Update-AzureRmSqlSyncGroup cmdlet modifies properties of an Azure SQL Database Sync Member.





PARAMETERS

-DatabaseName <String>

The name of the Azure SQL Database.



Required? true

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-MemberDatabaseCredential <PSCredential>

The credential (username and password) of the Azure SQL Database.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

The sync member name.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

The name of the resource group.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ServerName <String>

The name of the Azure SQL Server.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-SyncGroupName <String>

The sync group name.



Required? true

Position? 3

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel







NOTES









Example 1



PS C:\\> $credential = Get-Credential

PS C:\\> Update-AzureRmSqlSyncMember -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database01" -SyncGroupName

"SyncGroup01" -Name "SyncMember01"

-MemberDatabaseCredential $credential | Format-List

ResourceId : subscriptions/{subscriptionId}/resourceGroups/{ResourceGroup01}/servers/{Server01}/databases/{Database01}/syncGroups/

{SyncGroup01}/syncMembers/{SyncMember01}

ResourceGroupName : ResourceGroup01

ServerName : Server01

DatabaseName : Database01

SyncGroupName : SyncGroup01

SyncMemberName : SyncMember01

SyncDirection : OneWayMemberToHub

MemberDatabaseType: : AzureSqlDatabase

SyncAgentId :

SqlServerDatabaseId :

MemberServerName : memberServer01.full.dns.name

MemberDatabaseName : memberDatabase01

MemberDatabaseUserName : myAccount-new

MemberDatabasePassword :

SyncState : Good



This command resets the administrator password for the member database.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... syncmember

New-AzureRmSqlSyncMember

Get-AzureRmSqlSyncMember

Remove-AzureRmSqlSyncMember