skip to Main Content

I am unable to delete PostgreSQL database in azure using the below command:

az PostgreSQL db delete

Is there any other script such as bash to clean up azure postgreSQL database?

2

Answers


  1. I think you should not say postgresql but postgres – az postgres db delete

    Login or Signup to reply.
  2. Try command to like Delete database ‘testdb’ in the server ‘testsvr’:

    az postgres db delete -g testgroup -s testsvr -n testdb

    Required Parameters
    –name -n
    The name of the database.

    Optional Parameters
    –ids
    One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of ‘Resource Id’ arguments. You should provide either –ids or other ‘Resource Id’ arguments.

    –resource-group -g
    Name of resource group. You can configure the default group using az configure –defaults group=.

    –server-name -s
    Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.

    –yes -y
    Do not prompt for confirmation.

    To delete the Azure Database for PostgreSQL flexible server, run:

    az postgres flexible-server delete --resource-group myresourcegroup --name 
    mydemoserver
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search