PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Perché pg_restore restituisce le opzioni -d/--dbname e -f/--file non possono essere utilizzate insieme?

-f è l'output nomefile, non il file di input.

Il file di input non ha alcuna opzione di parametro.

c:\>pg_restore --help
pg_restore restores a PostgreSQL database from an archive created by pg_dump.

Usage:
  pg_restore [OPTION]... [FILE]

General options:
  -d, --dbname=NAME        connect to database name
  -f, --file=FILENAME      output file name
  -F, --format=c|d|t       backup file format (should be automatic)
  -l, --list               print summarized TOC of the archive
  -v, --verbose            verbose mode
  -V, --version            output version information, then exit
  -?, --help               show this help, then exit

Quindi devi usare:

pg_restore.exe -h localhost -U postgres -d Mydata "Mydata.backup"

Maggiori dettagli nel manuale:http://www.postgresql.org /docs/current/static/app-pgrestore.html