1 example for pg_restore
# Restore a PostgreSQL database from an archive file created by pg_dump # Detailed Version pg_restore --verbose --clean --no-acl --no-owner -h localhost -U your_user -d your_db_name path/to/archive.dump # Simple Version pg_restore your_db_name path/to/archive.dump