数据库
首页 > 数据库> > postgresql:数据库导入导出

postgresql:数据库导入导出

作者:互联网

  1. 通过我的电脑-》属性-》高级-》环境变量将postgre加入到系统变量中,否则你就通过cmd进入到postgre所在bin目录下,再进行下一步操作
  2. pg_dump -U postgres starxxxx > starxxxx.sql命令,把数据库导出到一个sql文件中
  3. psql -U postgres starxxxx < starxxxx.sql命令,把sql文件导入到数据库中

标签:postgresql,postgres,starxxxx,数据库,导出,postgre,导入,sql
来源: https://blog.51cto.com/u_2324584/2935284