随笔分类 -  sql / postgres / postgres导入导出

摘要:[TOC] # postgres数据导入 ## 1、数据导入 ```shell psql -f user_export.sql -h localhost -U mypguser -W mypostgres ``` **参数说明:** -f 读取的sql文件 -h 导入的ip地址 -U 导入的用户 - 阅读全文
posted @ 2023-08-23 16:49 站着说话不腰疼 阅读(171) 评论(0) 推荐(0)
摘要:[TOC] # postgres数据导出 ## 1、只导出所有对象的数据库结构 ```shell pg_dump -f user_export.sql -i -C -E UTF8 -n myschema -s -U mypguser -h localhost -W mypostgres ``` ** 阅读全文
posted @ 2023-08-23 16:49 站着说话不腰疼 阅读(444) 评论(0) 推荐(0)