oracle12c到19c adg搭建(六)切换后12c备库服务器安装19c软件在19c主库升级数据字典后尝试同步

一、安装19c软件

参考文章oracle12c到19c adg搭建(三)oracle19c数据库软件安装

二、原主库尝试通过19c软件启动数据库

2.1复制12c的相关参数文件和密码文件到19c目录

注意:密码文件需要从已切换主库19c传过来

oracle@o12u19p \~\]$ cd /u01/app/oracle/product/12.1.0.2/dbhome_1/dbs/ \[oracle@o12u19p dbs\]$ ls hc_orcl.dat init.ora initorcl.ora lkORCL orapworcl snapcf_orcl.f spfileorcl.ora \[oracle@o12u19p dbs\]$ cp \* /u01/app/oracle/product/19.3.0.0/dbhome_1/dbs/ \[oracle@o12u19p dbs\]$ cd /u01/app/oracle/product/19.3.0.0/dbhome_1/dbs/ \[oracle@o12u19p dbs\]$ ls hc_orcl.dat init.ora initorcl.ora lkORCL orapworcl snapcf_orcl.f spfileorcl.ora \[oracle@o12u19p dbs\]$ ### 2.2主库生成控制文件 SQL\> ALTER DATABASE CREATE standby controlfile AS '/backup/orcl.ctl'; Database altered. \[oracle@o12u19s backup\]$ scp orcl.ctl oracle@o12u19p:/backup![](https://img-blog.csdnimg.cn/direct/9deb13284d574c2bbb85a60b8f97749c.png) ### 2.3恢复控制文件 \[oracle@o12u19p backup\]$ sqlplus / as sysdba SQL\*Plus: Release 19.0.0.0.0 - Production on Wed Jun 19 10:02:39 2024 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle. All rights reserved. Connected to an idle instance. SQL\> startup nomount ORACLE instance started. Total System Global Area 6174013840 bytes Fixed Size 9148816 bytes Variable Size 1056964608 bytes Database Buffers 5100273664 bytes Redo Buffers 7626752 bytes SQL\> RMAN\> restore controlfile from'/backup/orcl.ctl'; Starting restore at 19-JUN-24 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=21 device type=DISK channel ORA_DISK_1: copied control file copy output file name=/u01/app/oracle/oradata/orcl/control01.ctl output file name=/u01/app/oracle/fast_recovery_area/orcl/control02.ctl Finished restore at 19-JUN-24 RMAN\> ### 2.4复制12c监听文件到19c目录下并启动监听文件 \[oracle@o12u19p admin\]$ cd /u01/app/oracle/product/12.1.0.2/dbhome_1/network/admin/ \[oracle@o12u19p admin\]$ scp \* /u01/app/oracle/product/19.3.0.0/dbhome_1/network/admin/ cp: omitting directory 'samples' \[oracle@o12u19p admin\]$ ls listener.ora samples shrept.lst sqlnet.ora tnsnames.ora \[oracle@o12u19p admin\]$ lsnrclt start bash: lsnrclt: command not found... \[oracle@o12u19p admin\]$ lsnrctl start ![](https://img-blog.csdnimg.cn/direct/a0e2a8104eef4a5d83da7a4e92b13ca7.png) ### 2.5备库开库 \[oracle@o12u19p admin\]$ sqlplus / as sysdba SQL\*Plus: Release 19.0.0.0.0 - Production on Wed Jun 19 10:29:44 2024 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.3.0.0.0 SQL\> alter database open 2 ; 报错: ![](https://img-blog.csdnimg.cn/direct/e3072693e7404612b30f88e7577f29e0.png) ![](https://img-blog.csdnimg.cn/direct/c72add861d0149f3826e1a1f81c10b38.png) 由于控制文件的scn和数据文件的scn差异过大导致 ### 2.6尝试从主库拷贝一些日志到备库 备库尝试日志应用 \[oracle@o12u19s backup\]$ cd /u01/app/oracle/oradata/ \[oracle@o12u19s oradata\]$ ls orcl orcldg \[oracle@o12u19s oradata\]$ cd orcldg/ \[oracle@o12u19s orcldg\]$ ls arch pdb1 pdbseed sysaux01.dbf system01.dbf temp01.dbf undotbs01.dbf users01.dbf \[oracle@o12u19s orcldg\]$ cd arch/ \[oracle@o12u19s arch\]$ ls ![](https://img-blog.csdnimg.cn/direct/8e2667c7f19a4b658916f24e7c401c47.png) 备库日志到1-27 ![](https://img-blog.csdnimg.cn/direct/0a6df3f90fda4ee0ab538056c8e1be7a.png) 主库从1-28开始拷贝 \[oracle@o12u19s arch\]$ scp 1_28_1171969607.dbf 1_28_1171991791.dbf 1_29_1171991791.dbf 1_30_1171991791.dbf 1_31_1171991791.dbf oracle@o12u19p:/u01/app/oracle/oradata/orcl/arch ![](https://img-blog.csdnimg.cn/direct/43f94103d0704a3d9fb2e94915a2258c.png) ### 2.7开启日志应用 alter database recover managed standby database using current logfile disconnect from session; ![](https://img-blog.csdnimg.cn/direct/81f92d6d35ab41dfbe2b85d730973a6f.png) ### 2.8主备库打开pdb SQL\> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 2 PDB$SEED READ ONLY NO 3 PDB1 MOUNTED SQL\> alter pluggable database pdb1 open; Pluggable database altered. ## 三、主备库同步检查 主库查看seq SQL\> select sequence#,applied from v$archived_log order by sequence# asc; ![](https://img-blog.csdnimg.cn/direct/c845a92552d34b98b44e44e966221541.png) 备库查看seq ![](https://img-blog.csdnimg.cn/direct/cce4eb204afb4ae7b2951666990ce522.png) 可以看到备库已经开始同步主库的日志从283开始。 至此我们完成了12c到19cadg的搭建及12c滚动升级到19c的过程

相关推荐
snpgroupcn4 分钟前
天能股份SAP系统整合实战:如何用8个月实现零业务中断的集团化管理升级
运维·系统架构
wjy6_5 分钟前
Rocky Linux 9.5 基于kubeadm部署k8s
linux·运维·kubernetes
ALex_zry5 小时前
SSH主机密钥验证失败:全面解决方案与技术手册
运维·ssh
厦门辰迈智慧科技有限公司6 小时前
城市排水管网流量监测系统解决方案
运维·服务器
我没有开挂7 小时前
旧 docker 版本通过 nvkind 搭建虚拟多节点 gpu 集群的坑
运维·docker·容器
qq_339282237 小时前
centos中libc.so.6No such file的解决方式
linux·运维·centos
小鸡,啄米7 小时前
centos9安装docker 配置docker代理
运维·docker·容器
水银嘻嘻7 小时前
12 web 自动化之基于关键字+数据驱动-反射自动化框架搭建
运维·前端·自动化
在肯德基吃麻辣烫8 小时前
Netdata在Ubuntu环境下的安装与配置:构建实时系统监控与性能分析平台
linux·运维·ubuntu
不念霉运8 小时前
Gitee DevOps:中国企业数字化转型的“本土化加速器“
运维·gitee·团队开发·代码规范·devops·代码复审