PostgreSQL数据库初接触

PostgreSQL默认端口为5432

windows下服务名为PostgreSQL-x64-10     10为版本

进程名为pg-ctl.exe

备份数据库命令:

pg_dump -h localhost -p 5432 -U postgres -f d:\20231124.dmp tcsl7

//tcsl7为数据库名  开始用-d 指定数据库,后来提示没-d参数

还原数据库:

psql -U postgres -f D:\欧阳\天才\20231124test\20231124test.dmp tcsl7

执行后会让输入密码,输入正确后开始备份或还原

可视化工具

有 navcate16 收费的,用是很好用

免费的有 pgadmin ,此工具非常好用,且免费

你可能感兴趣的:(数据库,postgresql)