5 lines
217 B
Batchfile
5 lines
217 B
Batchfile
echo off
|
|
SET BACKUPFOLDER=%~dp0
|
|
"C:\Program Files\PostgreSQL\10\bin\pg_dump.exe" -U jomu -n public --column-inserts --attribute-inserts --no-owner --no-privileges --no-acl account > %BACKUPFOLDER%\account.dump
|
|
pause;
|