美文网首页
PostgreSQL常用操作

PostgreSQL常用操作

作者: MaJiT | 来源:发表于2020-04-10 17:04 被阅读0次

    1.数据库备份恢复:pg_restore -h localhost -p 5432 -U postgres -W -d jeecg_boot -v "D:\Majit\jeecg-boot\jeect_boot.backup"

    2.//导出sql文件
    pg_dump -U postgres fhadmin_a>D:\fhadmin_a.sql
    //导出backup文件
    pg_dump -h localhost -p 5432 -U postgres -F c -b -v -f "D:/fhadmin_b.backup" -d fhadmin_a

    相关文章

      网友评论

          本文标题:PostgreSQL常用操作

          本文链接:https://www.haomeiwen.com/subject/nvcbfhtx.html