0

When i look up Moving a database with pg_dump and psql -U postgres db_name < ... results in "ERROR: relation "table_name" does not exist" and found -Fp option from @John P 's answer

I have look up for documentation https://www.postgresql.org/docs/9.6/app-pgdump.html but i cannot find any desciption about -Fp

So what does -Fp mean for ? Any Description ?

jeb
  • 78,592
  • 17
  • 171
  • 225
Peera
  • 99
  • 1
  • 1
  • 9

1 Answers1

0

It means --format=plain:

-F format --format=format

Selects the format of the output. format can be one of the following:

p
plain

    Output a plain-text SQL script file (the default).
unutbu
  • 842,883
  • 184
  • 1,785
  • 1,677