May 2019
Intermediate to advanced
600 pages
20h 46m
English
In PostgreSQL, there is a catalog table recording the list of installed extensions, so this recipe is quite simple. Issue the following command:
cookbook=> SELECT * FROM pg_extension;
This results in the following output:
-[ RECORD 1 ]--+--------extname | plpgsqlextowner | 10extnamespace | 11extrelocatable | fextversion | 1.0extconfig |extcondition |
To get the same list with fewer technical details, you can use the \dx meta command, as when listing databases.
Read now
Unlock full access