Azure Database Support Blog
1 MIN READ
Stop / Cancel ongoing Azure SQL DB scale operation
Yochanan_Rachamim
Mar 14, 2019Microsoft
First published on MSDN on Mar 21, 2018
Scenario:
if you want to cancel updating database pricing tier. this can be due to mistake, or long running scale operation.
Resolution:
open Azure cloud shell or use your local Azure CLI installation.
- edit the following command with your database details and execute the script
$ResourceGroupName = ""
$ServerName = ""
$DatabaseName = ""
#----------------------------------------
$OperationName = (az sql db op list --resource-group $ResourceGroupName --server $ServerName --database $DatabaseName --query "[?state=='InProgress'].name" --out tsv)
if(-not [string]::IsNullOrEmpty($OperationName))
{
(az sql db op cancel --resource-group $ResourceGroupName --server $ServerName --database $DatabaseName --name $OperationName)
"Operation " + $OperationName + " has been canceled"
}
else
{
"No in progress operation found"
}
- review the output to confirm operation has been canceled.
Updated Nov 26, 2020
Version 2.0Yochanan_Rachamim
Microsoft
Joined November 27, 2018
Azure Database Support Blog
Follow this blog board to get notified when there's new activity