阿里云ppas 逻辑备份(导出)、还原 - 导出到本地、从本地导入

本文涉及的产品
RDS MySQL DuckDB 分析主实例,集群系列 4核8GB
简介: 标签PostgreSQL , ppas , enterprisedb , edb背景阿里云RDS PPAS是PG的企业版本,兼容PG同时兼容Oracle。由于ppas做了很多兼容ORACLE的工作,所以元数据与PG社区版本有很大不同,那么用户在使用RDS PPAS时,如果有导出、导入的需求,请使用EDB 的pg_dump, pg_restore,请不要使用pg社区版本的pg_dump与pg_restore导出导入。

标签

PostgreSQL , ppas , enterprisedb , edb


背景

阿里云RDS PPAS是PG的企业版本,兼容PG同时兼容Oracle。

由于ppas做了很多兼容ORACLE的工作,所以元数据与PG社区版本有很大不同,那么用户在使用RDS PPAS时,如果有导出、导入的需求,请使用EDB 的pg_dump, pg_restore,请不要使用pg社区版本的pg_dump与pg_restore导出导入。

https://www.enterprisedb.com/

https://www.enterprisedb.com/software-downloads-welcome?resource=210381&campaign=70138000000eZKmAAM&anid=1255608&ma_formid=1048

安装edb提供的数据库软件(内置pgadmin, pg_dump, pg_restore)

注册edb账号

pic

下载edb提供数据库软件包

pic

edb-as10-server-10.5.12-1-windows-x64.exe

同一edb的许可

pic

安装

pic

pic

指定目录,记住目录,回头可能要配置pgadmin的BIN路径

pic

安装勾选,如果只需要图形化管理软件pgadmin以及客户端命令,勾选如下

pic

pic

pic

pic

pic

如果需要安装数据库软件,插件等,则勾选另外两个。

pic

pic

导出、备份ppas

直接使用edb pg_dump命令行导出,或者使用pgadmin图形化导出

pgadmin导出

pic

pic

配置,并连接到目标库

pic

pic

pic

pic

配置edb pg_dump bin目录

pic

备份指定数据库

pic

指定备份的输出文件名,其他参数建dump options里面的设置,或者参考pg_dump的帮助文件

pic

开始备份

pic

导入、还原ppas

直接使用edb pg_restore命令行导入,或者使用psql客户端执行SQL文件执行方式导入,或者使用pgadmin图形化导入

pgadmin导入、还原

创建目标库(连接到目标库)

restore

pic

指定restore的源备份文件名

pic

还原进度

pic

pic

注意

阿里云RDS PPAS的postgres库里面有一些超级用户的表,在导出时不会有问题,但是导入时可能遇到一些权限分配告警,可以忽略。

但是建议用户在使用RDS PPAS时,业务上不要使用postgres数据库,用户可以为业务创建业务库,例如app1, app2等DB。

参考

https://www.enterprisedb.com/

man pg_dump

pg_dump --help

pg_dump dumps a database as a text file or to other formats.  
  
Usage:  
  pg_dump [OPTION]... [DBNAME]  
  
General options:  
  -f, --file=FILENAME          output file or directory name  
  -F, --format=c|d|t|p         output file format (custom, directory, tar,  
                               plain text (default))  
  -j, --jobs=NUM               use this many parallel jobs to dump  
  -v, --verbose                verbose mode  
  -V, --version                output version information, then exit  
  -Z, --compress=0-9           compression level for compressed formats  
  --lock-wait-timeout=TIMEOUT  fail after waiting TIMEOUT for a table lock  
  --no-sync                    do not wait for changes to be written safely to disk  
  -?, --help                   show this help, then exit  
  
Options controlling the output content:  
  -a, --data-only              dump only the data, not the schema  
  -b, --blobs                  include large objects in dump  
  -B, --no-blobs               exclude large objects in dump  
  -c, --clean                  clean (drop) database objects before recreating  
  -C, --create                 include commands to create database in dump  
  -E, --encoding=ENCODING      dump the data in encoding ENCODING  
  -n, --schema=SCHEMA          dump the named schema(s) only  
  -N, --exclude-schema=SCHEMA  do NOT dump the named schema(s)  
  -o, --oids                   include OIDs in dump  
  -O, --no-owner               skip restoration of object ownership in  
                               plain-text format  
  -s, --schema-only            dump only the schema, no data  
  -S, --superuser=NAME         superuser user name to use in plain-text format  
  -t, --table=TABLE            dump the named table(s) only  
  -T, --exclude-table=TABLE    do NOT dump the named table(s)  
  -x, --no-privileges          do not dump privileges (grant/revoke)  
  --binary-upgrade             for use by upgrade utilities only  
  --column-inserts             dump data as INSERT commands with column names  
  --disable-dollar-quoting     disable dollar quoting, use SQL standard quoting  
  --disable-triggers           disable triggers during data-only restore  
  --enable-row-security        enable row security (dump only content user has  
                               access to)  
  --exclude-table-data=TABLE   do NOT dump data for the named table(s)  
  --if-exists                  use IF EXISTS when dropping objects  
  --inserts                    dump data as INSERT commands, rather than COPY  
  --no-publications            do not dump publications  
  --no-security-labels         do not dump security label assignments  
  --no-subscriptions           do not dump subscriptions  
  --no-synchronized-snapshots  do not use synchronized snapshots in parallel jobs  
  --no-tablespaces             do not dump tablespace assignments  
  --no-unlogged-table-data     do not dump unlogged table data  
  --quote-all-identifiers      quote all identifiers, even if not key words  
  --section=SECTION            dump named section (pre-data, data, or post-data)  
  --serializable-deferrable    wait until the dump can run without anomalies  
  --snapshot=SNAPSHOT          use given snapshot for the dump  
  --strict-names               require table and/or schema include patterns to  
                               match at least one entity each  
  --use-set-session-authorization  
                               use SET SESSION AUTHORIZATION commands instead of  
                               ALTER OWNER commands to set ownership  
  
Connection options:  
  -d, --dbname=DBNAME      database to dump  
  -h, --host=HOSTNAME      database server host or socket directory  
  -p, --port=PORT          database server port number  
  -U, --username=NAME      connect as specified database user  
  -w, --no-password        never prompt for password  
  -W, --password           force password prompt (should happen automatically)  
  --role=ROLENAME          do SET ROLE before dump  
  
If no database name is supplied, then the PGDATABASE environment  
variable value is used.  
  
Report bugs to <support@enterprisedb.com>.  
目录
相关文章
|
编解码 前端开发 JavaScript
构建高效响应式Web界面:现代前端框架的比较
【4月更文挑战第9天】在移动设备和多样屏幕尺寸盛行的时代,构建能够适应不同视口的响应式Web界面变得至关重要。本文深入探讨了几种流行的前端框架——Bootstrap、Foundation和Tailwind CSS,分析它们在创建响应式设计中的优势与局限。通过对比这些框架的栅格系统、组件库和定制化能力,开发者可以更好地理解如何选择合适的工具来优化前端开发流程,并最终实现高性能、跨平台兼容的用户界面。
700 15
|
关系型数据库 MySQL 监控
|
6月前
|
Java Spring
jwt解析方法找不到(Cannot resolve method ‘parseClaimsJws‘ in ‘JwtParserBuilder‘ )
解决Cannot resolve method ‘parseClaimsJws‘ in ‘JwtParserBuilder‘
|
存储 SQL 关系型数据库
数据库开发设计规范(通用)
数据库开发设计规范(通用)
2382 0
|
JSON 数据格式 Windows
LabVIEW创建Web服务
LabVIEW创建Web服务
291 0
|
存储 SQL 分布式计算
Java连接阿里云MaxCompute例
要使用Java连接阿里云MaxCompute数据库,首先需在项目中添加MaxCompute JDBC驱动依赖,推荐通过Maven管理。避免在代码中直接写入AccessKey,应使用环境变量或配置文件安全存储。示例代码展示了如何注册驱动、建立连接及执行SQL查询。建议使用RAM用户提升安全性,并根据需要配置时区和公网访问权限。具体步骤和注意事项请参考阿里云官方文档。
1046 10
|
Ubuntu 编译器 开发工具
如何根据自己的开发板型号下载和配置交叉编译链
【7月更文挑战第9天】为AMD64 Ubuntu配置ARM64开发板交叉编译环境: 1. 下载适配开发板的GCC,如rk3568用Linaro AArch64。 2. 将GCC置于`downloads`等目录。 3. 解压至`/opt/`,如`tar -xvf gcc-linaro-*.tar.xz -C /opt/`。 4. 编辑`~/.bashrc`添加`/opt/gcc-linaro/*/bin`至PATH。 5. 运行`source ~/.bashrc`激活环境变量。 6. 通过`aarch64-linux-gnu-gcc -v`验证安装。
721 0
|
SQL 关系型数据库 MySQL
923.【mysql】 only full group by 模式
923.【mysql】 only full group by 模式
599 1
|
存储 关系型数据库 MySQL
DataX:导入4字节UTF8编码(生僻字)到Mysql数据库的utf8mb4数据表
MySql数据库的编码支持UFT8字符集。utf-8编码可能是2个字节、3个字节、4个字节的字符,MYSQL的utf-8编码,只支持3个字节的字符。汉字中很多生僻字都是4个字节的字符,日常生活中人的姓名就会有很多高位的生僻字。
6755 1
r2dbc的repository注入失败
r2dbc的repository注入失败
173 0