sql >> Database >  >> RDS >> PostgreSQL

De opdracht psql pg_dump aanroepen in een batchscript

Hier is een oplossing:

@echo off
SET TableListeFile=C:\Users\mtuna\Documents\dumpfiles\database_list.txt

REM Saveing all tables name of database test_db on a temp file: database_list.txt  
psql -U postgres  -d test_db -t -c "SELECT table_name FROM information_schema.tables WHERE table_schema='public' AND table_type='BASE TABLE'" -o "%TableListeFile%"

REM Loop on liste tables name:
FOR /F "tokens=*" %%I IN (%TableListeFile%) DO (
REM Dump each table on file
pg_dump  -U postgres -h localhost -t %%I test_db > "C:\Users\mtuna\Documents\dumpfiles\%%I.sql"
)
REM Delete temp file
del /Q %TableListeFile%

Het zal u voor elke dump om wachtwoordinvoer vragen. Als u niet wilt worden aangesproken, kunt u de Pgpass gebruiken Bestand .

Ik hoop dat dat helpt.

Houari.



  1. Hoe commentaar te geven in SQL

  2. MySQL- Kan niet naar rij 0 springen op de MySQL-resultaatindex

  3. Versleutelde gegevens opslaan in Postgres

  4. Oracle Express Edition voor SQL Practice installeren