-
Notifications
You must be signed in to change notification settings - Fork 112
/
postgres_info_pre10.sql
217 lines (170 loc) · 8.36 KB
/
postgres_info_pre10.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
--
-- Author: Hari Sekhon
-- Date: 2020-08-06 10:34:23 +0100 (Thu, 06 Aug 2020)
--
-- vim:ts=4:sts=4:sw=4:et:filetype=sql
--
-- https://github.com/HariSekhon/SQL-scripts
--
-- License: see accompanying Hari Sekhon LICENSE file
--
-- If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
--
-- https://www.linkedin.com/in/HariSekhon
--
-- Useful PostgreSQL functions & info
--
-- Tested on PostgreSQL 8.4, 9.x, 10.x, 11.x, 12.x, 13.0
-- https://www.postgresql.org/docs/12/functions.html
\timing off
-- ========================================================================== --
-- V e r s i o n
-- ========================================================================== --
--\pset title 'PostgreSQL Version'
-- version() returns a long human readable string, hence we split from others SELECTs eg.
-- PostgreSQL 12.3 (Debian 12.3-1.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
SELECT
version(),
current_setting('server_version') AS "server_version",
current_setting('server_version_num') AS "server_version_num";
-- ========================================================================== --
-- S e r v e r D e t a i l s
-- ========================================================================== --
\echo
--\pset title 'PostgreSQL Server Details'
SELECT
pg_postmaster_start_time(),
pg_conf_load_time(),
current_setting('logging_collector') AS "logging_collector",
current_setting('log_destination') AS "log_destination"
-- not available in Postgres 9
-- doesn't work because it still checks if pg_current_logfile() is valid and neither eval or execute seem to work around this
-- CASE WHEN current_setting('server_version_num')::int > 100000 THEN pg_current_logfile() ELSE NULL END as pg_current_logfile
--pg_current_logfile()
-- current_setting('log_directory') AS "log_directory", -- log
-- current_setting('log_filename') AS "log_filename", -- postgresql-%Y-%m-%d_%H%M%S.log
-- not available on Postgres 10
--pg_jit_available()
;
-- SELECT pg_reload_conf(), pg_rotate_logfile();
-- pg_sleep(1.5)
-- pg_sleep_for('5 minutes')
-- pg_sleep_until('tomorrow 03:00')
-- ======================================================
-- https://www.postgresql.org/docs/12/runtime-config.html
-- set runtime config at system, database, or user level, or even user level for a specific database (eg. for an ETL user to set different memory settings for use in a given DB)
-- ALTER SYSTEM SET timezone = 'UTC';
-- ALTER DATABASE test SET timezone = 'UTC';
-- ALTER USER hari SET timezone = 'UTC';
-- ALTER USER hari IN DATABASE test SET timezone = 'UTC';
-- session level:
-- SET myParam TO 'myValue';
-- UPDATE pg_settings SET setting = 'myValue' WHERE name = 'myParam';
-- \x
-- SELECT * from pg_settings;
-- SHOW ALL;
-- SHOW one_param;
\echo
--\pset title 'Config Files'
SELECT
current_setting('config_file') AS "config_file",
current_setting('hba_file') AS "hba_file",
current_setting('ident_file') AS "ident_file";
\echo
--\pset title 'PostgreSQL Data Directory & Unix Sockets'
SELECT
current_setting('data_directory') AS "data_directory",
-- not available on PostgreSQL <= 9.2
--current_setting('unix_socket_directories') AS "unix_socket_directories",
current_setting('unix_socket_permissions') AS "unix_socket_permissions",
current_setting('unix_socket_group') AS "unix_socket_group";
-- ========================================================================== --
-- B u f f e r s & C o n n e c t i o n s
-- ========================================================================== --
\echo
--\pset title 'Buffers & Connections'
SELECT
current_setting('shared_buffers') AS "shared_buffers",
current_setting('work_mem') AS "work_mem",
current_setting('max_connections') AS "max_connections",
current_setting('max_files_per_process') AS "max_files_per_process", -- should be less than ulimit nofiles to avoid “Too many open files” failures
current_setting('track_activities') AS "track_activities", -- for pg_stat / pg_statio family of system views that are used in many other adjacent scripts
current_setting('track_counts') AS "track_counts", -- needed for the autovacuum daemon
current_setting('password_encryption') AS "password_encryption";
-- ========================================================================== --
-- U s e r
-- ========================================================================== --
\echo
--\pset title 'Users, Sessions & Queries'
-- in SQL the following have special syntax and should be called without parens: current_catalog, current_role, current_schema, current_user, session_user
SELECT
current_user, -- aka user, current_role - this is the effective user for permission checking
session_user, -- connection user before superuser SET SESSION AUTHORIZATION
current_schema,
current_catalog, -- SQL standard, same as current_database()
pg_backend_pid(),
current_query();
\echo
--\pset title 'Schema search list'
SELECT current_schemas(true) AS "current_schemas(true) - auto-searched schemas"; -- true to include implicit schemas eg. pg_catalog
-- ========================================================================== --
-- B a c k u p & R e c o v e r y
-- ========================================================================== --
--SELECT
-- not available on PostgreSQL <= 9.2
--pg_is_in_backup(),
-- not available on PostgreSQL 8.4
--pg_is_in_recovery(),
-- not available on PostgreSQL <= 9.2
-- pg_backup_start_time(),
-- 'see postgres_recovery.sql for more info' AS "info";
-- use postgres_recovery.sql instead of having a big blank table distracting us here
-- the following recovery control functions can only be executed during recovery - to get just the above use postgres_funcs.sql
--( CASE WHEN pg_is_in_recovery() THEN pg_is_wal_replay_paused() END) AS "pg_is_wal_replay_paused()",
--( CASE WHEN pg_is_in_recovery() THEN pg_last_wal_receive_lsn() END) AS "pg_last_wal_receive_lsn()",
--( CASE WHEN pg_is_in_recovery() THEN pg_last_wal_replay_lsn() END) AS "pg_last_wal_replay_lsn()",
--( CASE WHEN pg_is_in_recovery() THEN pg_last_xact_replay_timestamp() END) AS "pg_last_xact_replay_timestamp()"
--SELECT
-- pg_ls_logdir(),
-- pg_ls_waldir(),
-- pg_ls_archive_statusdir(),
-- pg_ls_tmpdir();
-- ========================================================================== --
-- N e t w o r k
-- ========================================================================== --
\echo
--\pset title 'Backup & Recovery'
\echo
--\pset title 'Networking'
SELECT
inet_client_addr(),
inet_client_addr(),
inet_server_addr(),
inet_server_port();
-- causes 0 rows when mixed with other select funcs
--SELECT pg_listening_channels();
-- ========================================================================== --
-- D a t e & T i m e
-- ========================================================================== --
-- CURRENT_TIME and CURRENT_TIMESTAMP deliver values with time zone; LOCALTIME and LOCALTIMESTAMP deliver values without time zone.
-- CURRENT_TIME, CURRENT_TIMESTAMP, LOCALTIME, and LOCALTIMESTAMP can optionally take a precision parameter, which causes the result to be rounded to that many fractional digits in the seconds field
\echo
--\pset title 'Date & Time'
SELECT
-- current timestamps even inside transactions/functions
now(),
timeofday(), -- human string timestamp with timezone
-- at start of current transaction for consistency, includes +offset timezone
current_timestamp(2) AS "current_timestamp(2)", -- secs precision of 2 decimal places, includes +offset timezone
current_date,
current_time(1) AS "current_time(1)", -- includes +offset timezone
localtime,
localtimestamp(1) AS "localtimestamp(1)",
-- provide current timestamps even inside transactions/functions
-- now()
-- timeofday(), -- human string timestamp with timezone
clock_timestamp(), -- current date + time (changes throughout function)
statement_timestamp(),
transaction_timestamp() -- same as CURRENT_TIMESTAMP
;
--\pset title