在Azure中,我想使用以下命令使用PowerShell自动运行手册重命名SQL数据库:
Set-AzureRmSqlDatabase -ResourceGroupName <ResourceGroupName>
-ServerName <ServerName> -DatabaseName <DatabaseName> -NewName <NewName>
该命令在Azure门户顶部导航的Launch Cloud Shell中正常运行。
但是在运行手册中,此错误不起作用:
Set-AzureRmSqlDatabase:找不到与参数名称“ NewName”匹配的参数。
Runbook中似乎缺少-NewName
Set-AzureRmSqlDatabase `
-DatabaseName <System.String> `
-ResourceGroupName <System.String> `
[-ElasticPoolName <System.String>] `
[-Tags <System.Collections.Generic.Dictionary`2[System.String,System.String]>] `
[-RequestedServiceObjectiveName <System.String>] `
-ServerName <System.String> `
[-Edition <Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition>] `
[-MaxSizeBytes <System.Int64>]