Share via

Deploy Azure SQL Managed Instance to an instance pool

Anonymous
2021-11-25T07:24:41.017+00:00

anyone successfully follow through the steps given from this URL ?
https://learn.microsoft.com/en-us/azure/azure-sql/managed-instance/instance-pools-configure?tabs=powershell

i am using the $200 free credit azure account to learn about azure sql so not too sure is there any limited/ constrain to use some of resources..... .?

how to further find out this hint given from below?
Tracking ID: '24345fcd-f75c-4dfb-beeb-230c0c8faf90''

error:

PS /home/azureuser> $virtualNetwork = Get-AzVirtualNetwork -Name "myVNet" -ResourceGroupName "CreateVNetQS-rg"
PS /home/azureuser> $subnet = Get-AzVirtualNetworkSubnetConfig -Name "default" -VirtualNetwork $virtualNetwork
PS /home/azureuser>
PS /home/azureuser> $instancePool = New-AzSqlInstancePool `

> -ResourceGroupName "CreateVNetQS-rg" > -Name "me-pool-name"
> -SubnetId $subnet.Id > -LicenseType "LicenseIncluded"
> -VCore 8 > -Edition "GeneralPurpose"
> -ComputeGeneration "Gen5" `
> -Location "EAST US"

New-AzSqlInstancePool: Long running operation failed with status 'Failed'. Additional Info:'An unexpected error occured while processing the request. Tracking ID: '24345fcd-f75c-4dfb-beeb-230c0c8faf90''
PS /home/azureuser>

Azure SQL Database

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.