PG-pg_dump備份/恢復資料庫

skystrivegao發表於2024-12-09

進入到PG15 安裝目錄bin目錄下面執行cmd命令

image

image

使用 psql 工具可以恢復 pg_dump 生成的 SQL 指令碼檔案:

psql -U 使用者名稱 -d 目標資料庫名 -f 備份檔名.sql

例如,恢復上面的備份檔案到資料庫 restored_database:

psql -U postgres -d restored_database -f mydatabase_backup.sql

相關文章