Quantcast
Channel: Other – Michał Szałkowski – Blog
Viewing all articles
Browse latest Browse all 125

Quickly copy a PostgreSQL database

$
0
0
sudo -u postgres pg_dump -Fc shop > shop_copy.dump
sudo -u postgres psql
 
postgres=# create database shop2;
postgres=# \q

sudo -u postgres pg_restore -d shop2 shop_copy.dump
sudo -u postgres psql

postgres=# \l

Viewing all articles
Browse latest Browse all 125

Trending Articles