akkoma/postgresql/notes.txt

5 lines
184 B
Plaintext
Raw Normal View History

2022-11-27 15:12:31 -07:00
create database db_name with template = template0 owner = root ENCODING = 'UTF8';
pg_dump -d db_name --format=custom > file.pgdump
pg_restore -v -U root -d db_name file.pgdump -c -j2