├── .gitmodules ├── LICENSE.md ├── README.md ├── bin ├── README.md ├── check_replication_lag.pl ├── generate_pgbouncer_userlist.sh ├── log_check.sh ├── makecron.sh ├── offlag.sh ├── postgresql-audit.sh ├── server-audit.sh ├── server-checklist.sh ├── slony_extract_schema_to_file.sh └── stuff-update.sh ├── loganalyze └── log_analyze.pl ├── slonik_template ├── cluster_config.slonik.template ├── create_set.slonik ├── create_slave_node.slonik ├── drop_set.slonik ├── drop_slave_node.slonik ├── execute_script.slonik ├── init_cluster.slonik ├── populate_set.slonik.template ├── populate_set.slonik_footer ├── populate_set.slonik_header ├── set_drop_items.slonik ├── setup_cluster.slonik ├── slon.conf.template ├── store_path.slonik ├── subscribe_set.slonik └── switchover.slonik └── sql ├── 83compat.sql ├── amcheck_indexes.sql ├── cache_stat.sql ├── check_all_tables_have_pk.sql ├── check_are_all_subscribed.sql ├── check_config.sql ├── check_missing_grants.sql ├── check_strange_fk.sql ├── check_uniq_indexes.sql ├── create_db_activity_view.sql ├── create_db_activity_view9.2.sql ├── create_query_stat_cpu_time_view.sql ├── create_query_stat_io_time_view.sql ├── create_query_stat_log.sql ├── create_query_stat_time_view.sql ├── create_repl_activity_view9.5.sql ├── create_slonik_set_full.sql ├── create_slonik_set_incremental.sql ├── create_xlog_math_procedures.sql ├── db_activity.sql ├── db_activity9.2.sql ├── db_activity9.6.sql ├── dirty_to_read_stat.sql ├── generate_drop_items.sql ├── global_reports ├── query_stat_cpu_time.sql ├── query_stat_io_time.sql ├── query_stat_total.sql ├── query_stat_total_10.sql ├── query_stat_total_11.sql ├── query_stat_total_13.sql ├── query_stat_total_14.sql ├── query_stat_total_15.sql ├── query_stat_total_16.sql ├── query_stat_total_17.sql └── query_stat_total_18.sql ├── index_bloat.sql ├── index_candidates_from_ssd.sql ├── index_candidates_to_deduplicate.sql ├── index_candidates_to_partial.sql ├── index_candidates_to_ssd.sql ├── index_disk_activity.sql ├── indexes_with_nulls.sql ├── indexing_progress.sql ├── locktree.sql ├── low_used_indexes.sql ├── low_used_indexes_with_replica.sql ├── master_wal_position.sql ├── old ├── create_db_activity_view_old.sql └── table_disk_activity.sql ├── query_stat_counts.sql ├── query_stat_cpu_time.sql ├── query_stat_io_time.sql ├── query_stat_rows.sql ├── query_stat_time.sql ├── query_stat_total_single_db.sql ├── redundant_indexes.sql ├── reindex_non_btree_indexes.sql ├── replication_pretty.sql ├── seq_scan_tables.sql ├── seq_scan_tables_with_replica.sql ├── set_default_grants.sql ├── set_missing_grants.sql ├── slave_wal_position.sql ├── slony └── temp.txt ├── slony_tables.sql ├── sync_tablespaces.sql ├── table_bloat.sql ├── table_bloat_approx.sql ├── table_bloat_approx12.sql ├── table_candidates_from_ssd.sql ├── table_candidates_to_ssd.sql ├── table_index_write_activity.sql ├── table_write_activity.sql ├── top_databases.sql ├── top_tables.sql ├── vacuum_progress.sql ├── vacuum_truncate_speedup.sql └── versions_check.sql /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/README.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/check_replication_lag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/check_replication_lag.pl -------------------------------------------------------------------------------- /bin/generate_pgbouncer_userlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/generate_pgbouncer_userlist.sh -------------------------------------------------------------------------------- /bin/log_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/log_check.sh -------------------------------------------------------------------------------- /bin/makecron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/makecron.sh -------------------------------------------------------------------------------- /bin/offlag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/offlag.sh -------------------------------------------------------------------------------- /bin/postgresql-audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/postgresql-audit.sh -------------------------------------------------------------------------------- /bin/server-audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/server-audit.sh -------------------------------------------------------------------------------- /bin/server-checklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/server-checklist.sh -------------------------------------------------------------------------------- /bin/slony_extract_schema_to_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/slony_extract_schema_to_file.sh -------------------------------------------------------------------------------- /bin/stuff-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/bin/stuff-update.sh -------------------------------------------------------------------------------- /loganalyze/log_analyze.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/loganalyze/log_analyze.pl -------------------------------------------------------------------------------- /slonik_template/cluster_config.slonik.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/cluster_config.slonik.template -------------------------------------------------------------------------------- /slonik_template/create_set.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/create_set.slonik -------------------------------------------------------------------------------- /slonik_template/create_slave_node.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/create_slave_node.slonik -------------------------------------------------------------------------------- /slonik_template/drop_set.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/drop_set.slonik -------------------------------------------------------------------------------- /slonik_template/drop_slave_node.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/drop_slave_node.slonik -------------------------------------------------------------------------------- /slonik_template/execute_script.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/execute_script.slonik -------------------------------------------------------------------------------- /slonik_template/init_cluster.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/init_cluster.slonik -------------------------------------------------------------------------------- /slonik_template/populate_set.slonik.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/populate_set.slonik.template -------------------------------------------------------------------------------- /slonik_template/populate_set.slonik_footer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/populate_set.slonik_footer -------------------------------------------------------------------------------- /slonik_template/populate_set.slonik_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/populate_set.slonik_header -------------------------------------------------------------------------------- /slonik_template/set_drop_items.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/set_drop_items.slonik -------------------------------------------------------------------------------- /slonik_template/setup_cluster.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/setup_cluster.slonik -------------------------------------------------------------------------------- /slonik_template/slon.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/slon.conf.template -------------------------------------------------------------------------------- /slonik_template/store_path.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/store_path.slonik -------------------------------------------------------------------------------- /slonik_template/subscribe_set.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/subscribe_set.slonik -------------------------------------------------------------------------------- /slonik_template/switchover.slonik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/slonik_template/switchover.slonik -------------------------------------------------------------------------------- /sql/83compat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/83compat.sql -------------------------------------------------------------------------------- /sql/amcheck_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/amcheck_indexes.sql -------------------------------------------------------------------------------- /sql/cache_stat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/cache_stat.sql -------------------------------------------------------------------------------- /sql/check_all_tables_have_pk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/check_all_tables_have_pk.sql -------------------------------------------------------------------------------- /sql/check_are_all_subscribed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/check_are_all_subscribed.sql -------------------------------------------------------------------------------- /sql/check_config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/check_config.sql -------------------------------------------------------------------------------- /sql/check_missing_grants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/check_missing_grants.sql -------------------------------------------------------------------------------- /sql/check_strange_fk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/check_strange_fk.sql -------------------------------------------------------------------------------- /sql/check_uniq_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/check_uniq_indexes.sql -------------------------------------------------------------------------------- /sql/create_db_activity_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_db_activity_view.sql -------------------------------------------------------------------------------- /sql/create_db_activity_view9.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_db_activity_view9.2.sql -------------------------------------------------------------------------------- /sql/create_query_stat_cpu_time_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_query_stat_cpu_time_view.sql -------------------------------------------------------------------------------- /sql/create_query_stat_io_time_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_query_stat_io_time_view.sql -------------------------------------------------------------------------------- /sql/create_query_stat_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_query_stat_log.sql -------------------------------------------------------------------------------- /sql/create_query_stat_time_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_query_stat_time_view.sql -------------------------------------------------------------------------------- /sql/create_repl_activity_view9.5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_repl_activity_view9.5.sql -------------------------------------------------------------------------------- /sql/create_slonik_set_full.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_slonik_set_full.sql -------------------------------------------------------------------------------- /sql/create_slonik_set_incremental.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_slonik_set_incremental.sql -------------------------------------------------------------------------------- /sql/create_xlog_math_procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/create_xlog_math_procedures.sql -------------------------------------------------------------------------------- /sql/db_activity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/db_activity.sql -------------------------------------------------------------------------------- /sql/db_activity9.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/db_activity9.2.sql -------------------------------------------------------------------------------- /sql/db_activity9.6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/db_activity9.6.sql -------------------------------------------------------------------------------- /sql/dirty_to_read_stat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/dirty_to_read_stat.sql -------------------------------------------------------------------------------- /sql/generate_drop_items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/generate_drop_items.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_cpu_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/global_reports/query_stat_cpu_time.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_io_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/global_reports/query_stat_io_time.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/global_reports/query_stat_total.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_10.sql: -------------------------------------------------------------------------------- 1 | query_stat_total.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_11.sql: -------------------------------------------------------------------------------- 1 | query_stat_total.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/global_reports/query_stat_total_13.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_14.sql: -------------------------------------------------------------------------------- 1 | query_stat_total_13.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_15.sql: -------------------------------------------------------------------------------- 1 | query_stat_total_13.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_16.sql: -------------------------------------------------------------------------------- 1 | query_stat_total_13.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/global_reports/query_stat_total_17.sql -------------------------------------------------------------------------------- /sql/global_reports/query_stat_total_18.sql: -------------------------------------------------------------------------------- 1 | query_stat_total_17.sql -------------------------------------------------------------------------------- /sql/index_bloat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/index_bloat.sql -------------------------------------------------------------------------------- /sql/index_candidates_from_ssd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/index_candidates_from_ssd.sql -------------------------------------------------------------------------------- /sql/index_candidates_to_deduplicate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/index_candidates_to_deduplicate.sql -------------------------------------------------------------------------------- /sql/index_candidates_to_partial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/index_candidates_to_partial.sql -------------------------------------------------------------------------------- /sql/index_candidates_to_ssd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/index_candidates_to_ssd.sql -------------------------------------------------------------------------------- /sql/index_disk_activity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/index_disk_activity.sql -------------------------------------------------------------------------------- /sql/indexes_with_nulls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/indexes_with_nulls.sql -------------------------------------------------------------------------------- /sql/indexing_progress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/indexing_progress.sql -------------------------------------------------------------------------------- /sql/locktree.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/locktree.sql -------------------------------------------------------------------------------- /sql/low_used_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/low_used_indexes.sql -------------------------------------------------------------------------------- /sql/low_used_indexes_with_replica.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/low_used_indexes_with_replica.sql -------------------------------------------------------------------------------- /sql/master_wal_position.sql: -------------------------------------------------------------------------------- 1 | 2 | SELECT pg_current_xlog_location(); 3 | 4 | -------------------------------------------------------------------------------- /sql/old/create_db_activity_view_old.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/old/create_db_activity_view_old.sql -------------------------------------------------------------------------------- /sql/old/table_disk_activity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/old/table_disk_activity.sql -------------------------------------------------------------------------------- /sql/query_stat_counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/query_stat_counts.sql -------------------------------------------------------------------------------- /sql/query_stat_cpu_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/query_stat_cpu_time.sql -------------------------------------------------------------------------------- /sql/query_stat_io_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/query_stat_io_time.sql -------------------------------------------------------------------------------- /sql/query_stat_rows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/query_stat_rows.sql -------------------------------------------------------------------------------- /sql/query_stat_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/query_stat_time.sql -------------------------------------------------------------------------------- /sql/query_stat_total_single_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/query_stat_total_single_db.sql -------------------------------------------------------------------------------- /sql/redundant_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/redundant_indexes.sql -------------------------------------------------------------------------------- /sql/reindex_non_btree_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/reindex_non_btree_indexes.sql -------------------------------------------------------------------------------- /sql/replication_pretty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/replication_pretty.sql -------------------------------------------------------------------------------- /sql/seq_scan_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/seq_scan_tables.sql -------------------------------------------------------------------------------- /sql/seq_scan_tables_with_replica.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/seq_scan_tables_with_replica.sql -------------------------------------------------------------------------------- /sql/set_default_grants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/set_default_grants.sql -------------------------------------------------------------------------------- /sql/set_missing_grants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/set_missing_grants.sql -------------------------------------------------------------------------------- /sql/slave_wal_position.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/slave_wal_position.sql -------------------------------------------------------------------------------- /sql/slony/temp.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sql/slony_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/slony_tables.sql -------------------------------------------------------------------------------- /sql/sync_tablespaces.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/sync_tablespaces.sql -------------------------------------------------------------------------------- /sql/table_bloat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/table_bloat.sql -------------------------------------------------------------------------------- /sql/table_bloat_approx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/table_bloat_approx.sql -------------------------------------------------------------------------------- /sql/table_bloat_approx12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/table_bloat_approx12.sql -------------------------------------------------------------------------------- /sql/table_candidates_from_ssd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/table_candidates_from_ssd.sql -------------------------------------------------------------------------------- /sql/table_candidates_to_ssd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/table_candidates_to_ssd.sql -------------------------------------------------------------------------------- /sql/table_index_write_activity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/table_index_write_activity.sql -------------------------------------------------------------------------------- /sql/table_write_activity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/table_write_activity.sql -------------------------------------------------------------------------------- /sql/top_databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/top_databases.sql -------------------------------------------------------------------------------- /sql/top_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/top_tables.sql -------------------------------------------------------------------------------- /sql/vacuum_progress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/vacuum_progress.sql -------------------------------------------------------------------------------- /sql/vacuum_truncate_speedup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/vacuum_truncate_speedup.sql -------------------------------------------------------------------------------- /sql/versions_check.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataegret/pg-utils/HEAD/sql/versions_check.sql --------------------------------------------------------------------------------