Prima pagina Indietro Avanti Ultima pagina Panoramica Immagine

Alla mia home page



Backup e ripristino

pg_dump -a -Ft mio_db -f /tmp/mio_db.sql

Estrae solo i dati dal database di nome “mio_db” in formato tar nel file mio_db.sql



pg_dump -a -Ft -t utenti -d mio_db -f /tmp/mio_db.user

Estrae in formato tar il contenuto della tabella utenti e lo scrive nel file mio_db.user



pg_restore -a -S postgres -Ft -d mio_db mio_db.sql

Ripristina come utente postgres il contenuto del file “tar” mio_db.sql nel database mio_db.



pg_restore -a -S postgres -Ft -t utenti -d mio_db mio_db.user

Ripristina come utente postgres il contenuto della tabella utenti nel database mio_db a partire dal file “mio_db.user”.



pg_dump mio_db > mio_db.sql

Estrae il database “mio_db” nel file mio_db.sql