skip to Main Content

I have used the command, and I’m not able to get the expected result.

Update-AzPostgreSqlConfiguration -ResourceGroupName resourcegroupname -ServerName mydemoserver -Value SQL_STANDARD -Sku-name D2ds_v4

and got the error: 
enter image description here

I want the command to work and be able to reduce the VCores of my PostgreSQL database.

2

Answers


  1. Chosen as BEST ANSWER

    @PramodValavala thank you for the answer but I already found the answer.


  2. You need to use the Update-AzPostgreSqlServer cmdlet which has the -Sku and -SkuCapacity parameters depending on your requirement.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search