title | excerpt | updated |
---|---|---|
PostgreSQL - Extensions disponibles (EN) |
List of available PostgreSQL extensions |
2023-06-22 |
Public Cloud Databases for PostgreSQL come with a set of supported extensions.
You cannot install unsupported ones, since they are managed and industrialized services. Contact us if an extension is missing for your project, we may consider the implementation.
Please note that some of the extensions have dependencies and they need to be created in the proper order. Also some extensions may require disconnecting the client and reconnecting before they are fully available.
You can list available extensions:
defaultdb=> SELECT * FROM pg_available_extensions;
name | default_version | installed_version | comment
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
aiven_extras | 1.1.8 | | aiven_extras
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
[...]
(71 rows)
Install an available extension:
defaultdb=> CREATE EXTENSION IF NOT EXISTS "<extension_name>";
CREATE EXTENSION
Check installed extensions:
defaultdb=> \dx
List of installed extensions
Name | Version | Schema | Description
--------------+---------+--------------+------------------------------
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
We would love to help answer questions and appreciate any feedback you may have.
If you need training or technical assistance to implement our solutions, contact your sales representative or click on this link to get a quote and ask our Professional Services experts for a custom analysis of your project.
Are you on Discord? Connect to our channel at https://discord.gg/ovhcloud and interact directly with the team that builds our databases service!