An Azure relational database service.
Deploy Azure SQL Managed Instance to an instance pool
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>