All Products
Search
Document Center

AnalyticDB for PostgreSQL:View the minor version of an instance

Last Updated:Jul 10, 2024

This topic describes how to view the minor version of an AnalyticDB for PostgreSQL instance.

Use the console to view the minor version of an instance

  1. Log on to the AnalyticDB for PostgreSQL console.

  2. In the upper-left corner of the console, select a region.

  3. Find the instance that you want to manage and click the instance ID.

  4. In the Basic Information section of the Basic Information page, view the minor version of the instance.

    Note

    For information about how to update the minor version of an instance, see Update the minor version of an instance.

Use a client tool to query the minor version of an instance

Before you can use a client tool to query the minor version of an AnalyticDB for PostgreSQL instance, you must connect to the instance. For more information, see Client connection.

Query the minor version number

Execute the following statement to query the minor version number of an AnalyticDB for PostgreSQL instance:

SHOW adbpg_version;

Sample result:

 adbpg_version
---------------
 6.3.*.0
(1 row)

Query the minor version release date

Execute the following statement to query the minor version release date of an AnalyticDB for PostgreSQL instance:

SHOW rds_release_date; 

Sample result:

 rds_release_date
------------------
 20210713
(1 row)

References