“Przywróć bazę danych PostgreSQL” Kod odpowiedzi

Przywróć bazę danych Postgres z pliku SQL

psql -d database_name -f backup.sql
Bored Bison

Zrzut postgresql i przywróć DB

#To dump a database called mydb into a SQL-script file:
pg_dump mydb > db.sql

#To reload such a script into a (freshly created) database named newdb:
psql -d newdb -f db.sql
Disgusted Dugong

Przywróć bazę danych PostgreSQL

docker exec -it (container-name) bash # inter container
# go dump file location it will easy to target restore file
psql -U username -d dbname < filename.sql # then run this for restore 
-- For Postgres versions 9.0 or earlier
psql -U username -d dbname -1 -f filename.sql
bilalahmed_dev

Odpowiedzi podobne do “Przywróć bazę danych PostgreSQL”

Pytania podobne do “Przywróć bazę danych PostgreSQL”

Więcej pokrewnych odpowiedzi na “Przywróć bazę danych PostgreSQL” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu