pg导入表结构
2023-06-20 本文已影响0人
HaoDongZ
导出
pg_dump -h hostname -p 5432 -U gilfoyle -s -f /tmp/fleet.sql fleet
导入
psql -U postgres -h hostname -d fleet -f /tmp/fleet.sql
导出
pg_dump -h hostname -p 5432 -U gilfoyle -s -f /tmp/fleet.sql fleet
导入
psql -U postgres -h hostname -d fleet -f /tmp/fleet.sql