5 lines
184 B
Plaintext
5 lines
184 B
Plaintext
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
|
|
|