Postgres: разное
Изменение уровня дебага в консоли:
SET client_min_messages TO DEBUG;
Изменение уровня дебага в консоли:
SET client_min_messages TO DEBUG;
Тема описывающая способы логирования
Для увеличения максимального к-ва коннектов, осбслуживаемых постгресом:
sysctl.conf
kern.ipc.shmmax=2147483648
kern.ipc.shmall=2097152
loader.conf
kern.ipc.semmni=256
kern.ipc.semmns=32000
kern.ipc.semmnu=256
postgresql.conf
max_connections = 250
SELECT tc.constraint_name,
tc.constraint_type,
tc.table_name,
kcu.column_name,
tc.is_deferrable,
tc.initially_deferred,
rc.match_option AS match_type,
rc.update_rule AS on_update,
rc.delete_rule AS on_delete,
ccu.table_name AS references_table,
ccu.column_name AS references_field
FROM information_schema.table_constraints tc
LEFT JOIN information_schema.key_column_usage kcu
ON tc.constraint_catalog = kcu.constraint_catalog
AND tc.constraint_schema = kcu.constraint_schema
AND tc.constraint_name = kcu.constraint_name
LEFT JOIN information_schema.referential_constraints rc
ON tc.constraint_catalog = rc.constraint_catalog
AND tc.constraint_schema = rc.constraint_schema
AND tc.constraint_name = rc.constraint_name
LEFT JOIN information_schema.constraint_column_usage ccu
ON rc.unique_constraint_catalog = ccu.constraint_catalog
AND rc.unique_constraint_schema = ccu.constraint_schema
AND rc.unique_constraint_name = ccu.constraint_name
Exclusion Constraints:
http://developer.postgresql.org/pgdocs/postgres/ddl-constraints.html#DDL-CONSTRAINTS-EXCLUSION
http://www.depesz.com/index.php/2010/01/03/waiting-for-8-5-exclusion-constraints/
Преобразование массивов:
Оригинал тут
select client_id, array_agg(order_id) from simple_table group by client_id;
select * from explode_array(array[1,2,3,4]);
Парсинг массивов postgres в php:
http://dklab.ru/lib/DB_Pgsql_Type/
Описание схемы:
http://www.postgresql.org/docs/8.4/interactive/information-schema.html
Выбор информации обо всех таблицах:
SELECT c.table_schema, c.table_name,
array_agg(CAST(c.column_name AS text)) as col_names,
array_agg(DISTINCT CAST(c.data_type AS text)) As dat_types
FROM information_schema.columns AS c
GROUP BY c.table_schema, c.table_name;
Либа для автоматических тестов PGUNIT:
http://dklab.ru/lib/dklab_pgunit/
Хорошая статья про ON-LINE backup http://www.opennet.ru/base/sys/postgresql_online_backup.txt.html
Для того, чтобы сделать простой бэкап в формате SQL:
pg_dump --inserts -U pavel -W database_name > /home/pavel/backup.sql