Postgresql-Mac

安装客户端

https://dba.stackexchange.com/a/258890

Install just client with brew:

1
2
brew install pgcli

then link it:

1
brew link --force libpq

as output you will get the path to psql:

1
2
If you need to have this software first in your PATH instead consider running:
echo 'export PATH="/usr/local/opt/libpq/bin:$PATH"' >> ~/.zshrc

to find this path again:

1
brew info libpq

数据导入和导出

导出数据库

1.导出单个表

例:从ip为xxx的数据库monitor中导出threshold的表结构和数据到本地文件threshold.sql:
pg_dump -t threshold -h 135.32.94.142 monitor -U monitor -p 5432 -f threshold.sql
参数说明:-t 指定导出的表名;-h 数据库地址;-U 数据库用户;-p 访问端口;-f 导出到指定文件;

2.导出所有表和所有数据

例:从ip为xxx的数据库monitor导出所有表结构和数据到文件monitor.sql:
pg_dump -h 135.32.94.142 monitor -U monitor -p 5432 -f monitor.sql
3.仅导出所有表结构

例:从ip为xxx的数据库monitor导出所有的表结构到文件monitor.sql:
pg_dump -s -h 135.32.94.142 monitor -U monitor -p 5432 -f monitor.sql
参数说明:-s 表示只导出表结构,不导数据

注:一般数据库数据量比较大,如果远程导出所有的表结构和数据的话会非常慢,所有只导出表结构是个明智的选择。随后可以再导出单个重要表结构和数据进来。

导入数据库

1.导入到远程数据库

例:从本地文件threshold.sql导入表结构和数据到ip为xxx的数据库monitor:
psql -h 135.32.9.99 -d monitor -U monitor -f threshold.sql
参数说明: -h 数据库地址;-d 数据库;-U 指定用户;-f 要导入的文件 注:文件就是从数据库导出的文件。

2.导入到本地数据库
psql -h 0.0.0.0 -d monitor -U monitor -p 5432 -f monitor.sql
参数说明: -p 指定数据库服务端口,视情况而变,默认是5432端口的可以不加

————————————————
版权声明:本文为CSDN博主「比特叔叔」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:postgresql数据库导入导出_比特叔叔的博客-CSDN博客