DBA Hub

📋Steps in this guide1/1

Find extension details

-- Find list of installed extension:

postgresql configurationintermediate
by PostgreSQL
14 views
1

Find extension details

-- Find list of installed extension: -- For finding available extension in server:

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
psql#
\dx
(or)
psql#
\dx+
(or)
psql#
SELECT * FROM pg_extension;
psql#
SELECT * FROM pg_available_extensions;

Comments (0)

Please to add comments

No comments yet. Be the first to comment!