Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
用于pg_dump转储用作 Django 应用程序后端的 postgres 数据库时。我需要使用“-o”标志(转储对象标识符)吗?
pg_dump
假设您使用的是 Postgres 8.1 或更高版本,那么没有 - 除非您以某种方式绑定到您的系统表中。WITH OIDS除非在创建用户表时指定,否则 postgres 中的 OID 仅用于系统表。
WITH OIDS
postgres 文档中的 OID。
WITH OIDS曾经是 Postgres 8.0 及更早版本中的默认设置,但在 Postgres 8.1 中已更改。