az postgres db

Manage PostgreSQL databases on a server.

Commands

az postgres db create

Create a PostgreSQL database.

az postgres db delete

Delete a database.

az postgres db list

List the databases for a server.

az postgres db show

Show the details of a database.

az postgres db create

Create a PostgreSQL database.

az postgres db create --name
                      --resource-group
                      --server-name
                      [--charset]
                      [--collation]

Examples

Create database 'testdb' in the server 'testsvr' with the default parameters.

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

Create database 'testdb' in server 'testsvr' with a given character set and collation rules.

az postgres db create -g testgroup -s testsvr -n testdb --charset {valid_charset} --collation {valid_collation}

Required Parameters

--name -n

The name of the database.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--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.

Optional Parameters

--charset

The charset of the database.

--collation

The collation of the database.

az postgres db delete

Delete a database.

az postgres db delete --name
                      [--ids]
                      [--resource-group]
                      [--server-name]
                      [--yes]

Examples

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=<name>.

--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.

az postgres db list

List the databases for a server.

az postgres db list --resource-group
                    --server-name

Examples

List databases in the server 'testsvr'.

az postgres db list -g testgroup -s testsvr

Required Parameters

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--server-name -s

Name of the Server.

az postgres db show

Show the details of a database.

az postgres db show --name
                    [--ids]
                    [--resource-group]
                    [--server-name]

Examples

Show database 'testdb' in the server 'testsvr'.

az postgres db show -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=<name>.

--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.