`-Fp` 对 pg_dump 选项意味着什么?
What does `-Fp` mean for pg_dump option?
当我查找 Moving a database with pg_dump and psql -U postgres db_name < ... results in "ERROR: relation "table_name" does not exist" 并从@John P 的回答中找到 -Fp
选项时
我已查找文档 https://www.postgresql.org/docs/9.6/app-pgdump.html
但是我找不到关于 -Fp
的任何描述
那么 -Fp
是什么意思?任何描述?
表示--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).
当我查找 Moving a database with pg_dump and psql -U postgres db_name < ... results in "ERROR: relation "table_name" does not exist" 并从@John P 的回答中找到 -Fp
选项时
我已查找文档 https://www.postgresql.org/docs/9.6/app-pgdump.html
但是我找不到关于 -Fp
那么 -Fp
是什么意思?任何描述?
表示--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).