This article is half-done without your Comment! *** Please share your thoughts via Comment ***
PostgreSQL 9.6 came with lots of very useful features and new system views.
I shared many articles on PostgreSQL 9.6 which you can get in PostgreSQL category.
PostgreSQL 9.6 also introduced a new system view which is pg_config. Using this view, we can get the information like important paths, postgres compilation details.
Query to pg_config:
1 |
select name, setting from pg_config; |
The example result is:
Leave a Reply