oracle 重建控制文件

oracle 11.2.0.4 单实例重建控制文件时,报这个错,寻求各位大佬帮助
我来答
添加附件
收藏
复制链接
微信扫码分享

在小程序上查看
分享
添加附件
问题补充
1条回答
默认
最新
采纳答案后不可修改和取消
一、查看控制文件路径和内容
SQL> show parameter control_files NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ control_files string /oradata/orcl/control01.ctl, / u01/app/oracle/fast_recovery_a rea/orcl/control02.ctl [oracle@orcl:/oradata/orcl]$ ll /oradata/orcl/control01.ctl -rw-r----- 1 oracle oinstall 9748480 Apr 15 10:01 /oradata/orcl/control01.ctl [oracle@orcl:/oradata/orcl]$ ll /u01/app/oracle/fast_recovery_area/orcl/control02.ctl -rw-r----- 1 oracle oinstall 9748480 Apr 15 10:03 /u01/app/oracle/fast_recovery_area/orcl/control02.ctl --确保开启归档 SQL> archive log list Database log mode No Archive Mode Automatic archival Disabled Archive destination /archivelog Oldest online log sequence 10 Current log sequence 12 SQL> select distinct dbms_rowid.rowid_block_number(rowid) from props$; DBMS_ROWID.ROWID_BLOCK_NUMBER(ROWID) ------------------------------------ 801 --控制文件内容 --生成控制文件 SQL> alter database backup controlfile to trace as '/home/oracle/ctlbak.ctl'; Database altered. --查看trace内容 [oracle@orcl:/home/oracle]$ cat ctlbak.ctl -- The following are current System-scope REDO Log Archival related -- parameters and can be included in the database initialization file. -- -- LOG_ARCHIVE_DEST='' -- LOG_ARCHIVE_DUPLEX_DEST='' -- -- LOG_ARCHIVE_FORMAT=%t_%s_%r.dbf -- -- DB_UNIQUE_NAME="orcl" -- -- LOG_ARCHIVE_CONFIG='SEND, RECEIVE, NODG_CONFIG' -- LOG_ARCHIVE_MAX_PROCESSES=4 -- STANDBY_FILE_MANAGEMENT=MANUAL -- STANDBY_ARCHIVE_DEST=?/dbs/arch -- FAL_CLIENT='' -- FAL_SERVER='' -- -- LOG_ARCHIVE_DEST_1='LOCATION=/archivelog' -- LOG_ARCHIVE_DEST_1='OPTIONAL REOPEN=300 NODELAY' -- LOG_ARCHIVE_DEST_1='ARCH NOAFFIRM NOEXPEDITE NOVERIFY SYNC' -- LOG_ARCHIVE_DEST_1='REGISTER NOALTERNATE NODEPENDENCY' -- LOG_ARCHIVE_DEST_1='NOMAX_FAILURE NOQUOTA_SIZE NOQUOTA_USED NODB_UNIQUE_NAME' -- LOG_ARCHIVE_DEST_1='VALID_FOR=(PRIMARY_ROLE,ONLINE_LOGFILES)' -- LOG_ARCHIVE_DEST_STATE_1=ENABLE -- -- Below are two sets of SQL statements, each of which creates a new -- control file and uses it to open the database. The first set opens -- the database with the NORESETLOGS option and should be used only if -- the current versions of all online logs are available. The second -- set opens the database with the RESETLOGS option and should be used -- if online logs are unavailable. -- The appropriate set of statements can be copied from the trace into -- a script file, edited as necessary, and executed when there is a -- need to re-create the control file. -- -- Set #1. NORESETLOGS case -- -- The following commands will create a new control file and use it -- to open the database. -- Data used by Recovery Manager will be lost. -- Additional logs may be required for media recovery of offline -- Use this only if the current versions of all online logs are -- available. -- After mounting the created controlfile, the following SQL -- statement will place the database in the appropriate -- protection mode: -- ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE STARTUP NOMOUNT CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS NOARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 292 LOGFILE GROUP 1 '/oradata/orcl/redo01.log' SIZE 120M BLOCKSIZE 512, GROUP 2 '/oradata/orcl/redo02.log' SIZE 120M BLOCKSIZE 512, GROUP 3 '/oradata/orcl/redo03.log' SIZE 120M BLOCKSIZE 512 -- STANDBY LOGFILE DATAFILE '/oradata/orcl/system01.dbf', '/oradata/orcl/sysaux01.dbf', '/oradata/orcl/undotbs01.dbf', '/oradata/orcl/users01.dbf', '/oradata/orcl/example01.dbf' CHARACTER SET AL32UTF8 ; -- Commands to re-create incarnation table -- Below log names MUST be changed to existing filenames on -- disk. Any one log file from each branch can be used to -- re-create incarnation records. -- ALTER DATABASE REGISTER LOGFILE '/archivelog/1_1_1069941729.dbf'; -- Recovery is required if any of the datafiles are restored backups, -- or if the last shutdown was not normal or immediate. RECOVER DATABASE -- Database can now be opened normally. ALTER DATABASE OPEN; -- Commands to add tempfiles to temporary tablespaces. -- Online tempfiles have complete space information. -- Other tempfiles may require adjustment. ALTER TABLESPACE TEMP ADD TEMPFILE '/oradata/orcl/temp01.dbf' SIZE 30408704 REUSE AUTOEXTEND OFF; -- End of tempfile additions. -- -- Set #2. RESETLOGS case -- -- The following commands will create a new control file and use it -- to open the database. -- Data used by Recovery Manager will be lost. -- The contents of online logs will be lost and all backups will -- be invalidated. Use this only if online logs are damaged. -- After mounting the created controlfile, the following SQL -- statement will place the database in the appropriate -- protection mode: -- ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE STARTUP NOMOUNT CREATE CONTROLFILE REUSE DATABASE "ORCL" RESETLOGS NOARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 292 LOGFILE GROUP 1 '/oradata/orcl/redo01.log' SIZE 120M BLOCKSIZE 512, GROUP 2 '/oradata/orcl/redo02.log' SIZE 120M BLOCKSIZE 512, GROUP 3 '/oradata/orcl/redo03.log' SIZE 120M BLOCKSIZE 512 -- STANDBY LOGFILE DATAFILE '/oradata/orcl/system01.dbf', '/oradata/orcl/sysaux01.dbf', '/oradata/orcl/undotbs01.dbf', '/oradata/orcl/users01.dbf', '/oradata/orcl/example01.dbf' CHARACTER SET AL32UTF8 ; -- Commands to re-create incarnation table -- Below log names MUST be changed to existing filenames on -- disk. Any one log file from each branch can be used to -- re-create incarnation records. -- ALTER DATABASE REGISTER LOGFILE '/archivelog/1_1_1069941729.dbf'; -- Recovery is required if any of the datafiles are restored backups, -- or if the last shutdown was not normal or immediate. RECOVER DATABASE USING BACKUP CONTROLFILE -- Database can now be opened zeroing the online logs. ALTER DATABASE OPEN RESETLOGS; -- Commands to add tempfiles to temporary tablespaces. -- Online tempfiles have complete space information. -- Other tempfiles may require adjustment. ALTER TABLESPACE TEMP ADD TEMPFILE '/oradata/orcl/temp01.dbf' SIZE 30408704 REUSE AUTOEXTEND OFF; -- End of tempfile additions. --
复制
当前数据库存在两份控制文件,分别位于数据文件路径和快速闪回区路径。
二、模拟控制文件丢失情况:
1、未丢失全部控制文件
删除快闪区中的控制文件,强制关闭数据库。
[oracle@orcl:/oradata/orcl]$ rm -rf /u01/app/oracle/fast_recovery_area/orcl/control02.ctl [oracle@orcl:/oradata/orcl]$ ll /u01/app/oracle/fast_recovery_area/orcl/control02.ctl ls: cannot access /u01/app/oracle/fast_recovery_area/orcl/control02.ctl: No such file or directory --开一个新的session,此时数据库已经处于报错状态,无论什么操作都会报错,此时强制关闭数据库 SQL> select open_mode from v$database; select open_mode from v$database * ERROR at line 1: ORA-00210: cannot open the specified control file ORA-00202: control file: '/u01/app/oracle/fast_recovery_area/orcl/control02.ctl' ORA-27041: unable to open file Linux-x86_64 Error: 2: No such file or directory Additional information: 3 SQL> shutdown abort ORACLE instance shut down. SQL>
复制
从数据文件路径复制一份控制文件到快闪区中,尝试再次关闭是否报错。
--复制控制文件 [oracle@orcl:/u01/app/oracle/fast_recovery_area/orcl]$ cp /oradata/orcl/control01.ctl control02.ctl [oracle@orcl:/u01/app/oracle/fast_recovery_area/orcl]$ ls control02.ctl --开启数据库 SQL> startup ORACLE instance started. Total System Global Area 1603411968 bytes Fixed Size 2253664 bytes Variable Size 452988064 bytes Database Buffers 1140850688 bytes Redo Buffers 7319552 bytes Database mounted. Database opened.
复制
2、全部丢失,控制文件存在备份
有两种方式:
1、通过备份的文件进行重建控制文件
2、通过rman恢复控制文件,需要通过resetlogs方式打开数据库
一、通过备份文件重建控制文件
--通过备份控制文件获取创建控制文件脚本 CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS NOARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 292 LOGFILE GROUP 1 '/oradata/orcl/redo01.log' SIZE 120M BLOCKSIZE 512, GROUP 2 '/oradata/orcl/redo02.log' SIZE 120M BLOCKSIZE 512, GROUP 3 '/oradata/orcl/redo03.log' SIZE 120M BLOCKSIZE 512 -- STANDBY LOGFILE DATAFILE '/oradata/orcl/system01.dbf', '/oradata/orcl/sysaux01.dbf', '/oradata/orcl/undotbs01.dbf', '/oradata/orcl/users01.dbf', '/oradata/orcl/example01.dbf' CHARACTER SET AL32UTF8; --开始恢复 SQL> startup nomount ORACLE instance started. Total System Global Area 1603411968 bytes Fixed Size 2253664 bytes Variable Size 452988064 bytes Database Buffers 1140850688 bytes Redo Buffers 7319552 bytes SQL> CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS NOARCHIVELOG 2 MAXLOGFILES 16 3 MAXLOGMEMBERS 3 4 MAXDATAFILES 100 5 MAXINSTANCES 8 6 MAXLOGHISTORY 292 7 LOGFILE 8 GROUP 1 '/oradata/orcl/redo01.log' SIZE 120M BLOCKSIZE 512, 9 GROUP 2 '/oradata/orcl/redo02.log' SIZE 120M BLOCKSIZE 512, 10 GROUP 3 '/oradata/orcl/redo03.log' SIZE 120M BLOCKSIZE 512 11 -- STANDBY LOGFILE 12 DATAFILE 13 '/oradata/orcl/system01.dbf', 14 '/oradata/orcl/sysaux01.dbf', 15 '/oradata/orcl/undotbs01.dbf', 16 '/oradata/orcl/users01.dbf', 17 '/oradata/orcl/example01.dbf' 18 CHARACTER SET AL32UTF8; Control file created. SQL> recover database; Media recovery complete. SQL> alter database open; Database altered. SQL> ALTER TABLESPACE TEMP ADD TEMPFILE '/oradata/orcl/temp01.dbf'; Tablespace altered. SQL> select open_mode from v$database; OPEN_MODE -------------------- READ WRITE
复制
成功恢复控制文件。
二、通过rman恢复控制文件
rman备份控制文件
RMAN> backup current controlfile format '/home/oracle/ctrl.ora'; Starting backup at 15-APR-21 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=29 device type=DISK channel ORA_DISK_1: starting full datafile backup set channel ORA_DISK_1: specifying datafile(s) in backup set including current control file in backup set channel ORA_DISK_1: starting piece 1 at 15-APR-21 channel ORA_DISK_1: finished piece 1 at 15-APR-21 piece handle=/home/oracle/ctrl.ora tag=TAG20210415T104457 comment=NONE channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01 Finished backup at 15-APR-21 RMAN> list backup of controlfile; List of Backup Sets =================== BS Key Type LV Size Device Type Elapsed Time Completion Time ------- ---- -- ---------- ----------- ------------ --------------- 1 Full 9.64M DISK 00:00:01 15-APR-21 BP Key: 1 Status: AVAILABLE Compressed: NO Tag: TAG20210415T104457 Piece Name: /home/oracle/ctrl.ora Control File Included: Ckp SCN: 1219869 Ckp time: 15-APR-21
复制
rm删除所有控制文件,尝试添加数据文件,强制关闭数据库,尝试开启到mount状态。
[oracle@orcl:/u01/app/oracle/fast_recovery_area/orcl]$ rm control02.ctl [oracle@orcl:/u01/app/oracle/fast_recovery_area/orcl]$ rm /oradata/orcl/control01.ctl [oracle@orcl:/u01/app/oracle/fast_recovery_area/orcl]$ ll total 0 [oracle@orcl:/u01/app/oracle/fast_recovery_area/orcl]$ ll /oradata/orcl/control01.ctl ls: cannot access /oradata/orcl/control01.ctl: No such file or directory SQL> alter tablespace USERS add datafile; alter tablespace USERS add datafile * ERROR at line 1: ORA-00603: ORACLE server session terminated by fatal error ORA-00210: cannot open the specified control file ORA-00202: control file: '/oradata/orcl/control01.ctl' ORA-27041: unable to open file Linux-x86_64 Error: 2: No such file or directory Additional information: 3 ORA-00210: cannot open the specified control file ORA-00202: control file: '/oradata/orcl/control01.ctl' ORA-27041: unable to open file Linux-x86_64 Error: 2: No such file or directory Additional information: 3 Process ID: 2333 Session ID: 1 Serial number: 9 SQL> shutdown abort; ORACLE instance shut down. SQL> startup mount ORACLE instance started. Total System Global Area 1603411968 bytes Fixed Size 2253664 bytes Variable Size 452988064 bytes Database Buffers 1140850688 bytes Redo Buffers 7319552 bytes ORA-00205: error in identifying control file, check alert log for more info
复制
开启数据库到nomount状态,rman恢复控制文件,恢复数据库
--开启到nomount状态 SQL> startup nomount ORACLE instance started. Total System Global Area 1603411968 bytes Fixed Size 2253664 bytes Variable Size 452988064 bytes Database Buffers 1140850688 bytes Redo Buffers 7319552 bytes --rman恢复控制文件 RMAN> restore controlfile from '/home/oracle/ctrl.ora'; Starting restore at 15-APR-21 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=20 device type=DISK channel ORA_DISK_1: restoring control file channel ORA_DISK_1: restore complete, elapsed time: 00:00:01 output file name=/oradata/orcl/control01.ctl output file name=/u01/app/oracle/fast_recovery_area/orcl/control02.ctl Finished restore at 15-APR-21 --开启数据库到mount状态 SQL> alter database mount; Database altered. --恢复数据库 RMAN> recover database; Starting recover at 15-APR-21 released channel: ORA_DISK_1 Starting implicit crosscheck backup at 15-APR-21 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=20 device type=DISK Finished implicit crosscheck backup at 15-APR-21 Starting implicit crosscheck copy at 15-APR-21 using channel ORA_DISK_1 Finished implicit crosscheck copy at 15-APR-21 searching for all files in the recovery area cataloging files... no files cataloged using channel ORA_DISK_1 RMAN-06900: WARNING: unable to generate V$RMAN_STATUS or V$RMAN_OUTPUT row RMAN-06901: WARNING: disabling update of the V$RMAN_STATUS and V$RMAN_OUTPUT rows ORACLE error from target database: ORA-19922: there is no parent row with id 0 and level 1 starting media recovery archived log for thread 1 with sequence 12 is already on disk as file /oradata/orcl/redo03.log archived log file name=/oradata/orcl/redo03.log thread=1 sequence=12 media recovery complete, elapsed time: 00:00:00 Finished recover at 15-APR-21
复制
通过resetlogs方式打开数据库
SQL> alter database open resetlogs; Database altered.
复制
3、全部丢失,没有备份
删除全部控制文件,并且没有备份控制文件
SQL> select open_mode from v$database; select open_mode from v$database * ERROR at line 1: ORA-00210: cannot open the specified control file ORA-00202: control file: '/oradata/orcl/control01.ctl' ORA-27041: unable to open file Linux-x86_64 Error: 2: No such file or directory Additional information: 3 SQL> shutdown abort ORACLE instance shut down.
复制
手动创建控制文件
--通过spfile或者pfile文件获取信息 --1.db_name [oracle@orcl:/home/oracle]$ grep "db_name" pfile.ora *.db_name='orcl' --2.字符集(通过dd if查看system01数据文件) dd if=system01.dbf of=lucifer bs=8192 skip=801 --3.获取数据文件和日志文件名称 [oracle@orcl:/oradata/orcl]$ ll total 2083264 -rw-r-----. 1 oracle oinstall 328343552 Apr 15 15:14 example01.dbf -rw-r-----. 1 oracle oinstall 125829632 Apr 15 15:14 redo01.log -rw-r-----. 1 oracle oinstall 125829632 Apr 15 15:14 redo02.log -rw-r-----. 1 oracle oinstall 125829632 Apr 15 15:17 redo03.log -rw-r-----. 1 oracle oinstall 545267712 Apr 15 15:14 sysaux01.dbf -rw-r-----. 1 oracle oinstall 786440192 Apr 15 15:14 system01.dbf -rw-r-----. 1 oracle oinstall 30416896 Apr 15 15:14 temp01.dbf -rw-r-----. 1 oracle oinstall 89137152 Apr 15 15:14 undotbs01.dbf -rw-r-----. 1 oracle oinstall 5251072 Apr 15 15:14 users01.dbf --重建控制文件(这里不需要加临时文件,开启数据库之后需要reuse) --开启数据库到nomount STARTUP NOMOUNT; --创建控制文件 CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS NOARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 292 LOGFILE GROUP 1 '/oradata/orcl/redo01.log' SIZE 120M BLOCKSIZE 512, GROUP 2 '/oradata/orcl/redo02.log' SIZE 120M BLOCKSIZE 512, GROUP 3 '/oradata/orcl/redo03.log' SIZE 120M BLOCKSIZE 512 -- STANDBY LOGFILE DATAFILE '/oradata/orcl/system01.dbf', '/oradata/orcl/sysaux01.dbf', '/oradata/orcl/undotbs01.dbf', '/oradata/orcl/users01.dbf', '/oradata/orcl/example01.dbf' CHARACTER SET AL32UTF8 ; --恢复数据库 RECOVER DATABASE; --执行过程 SQL> CREATE CONTROLFILE REUSE DATABASE "ORCL" NORESETLOGS NOARCHIVELOG 2 MAXLOGFILES 16 3 MAXLOGMEMBERS 3 4 MAXDATAFILES 100 5 MAXINSTANCES 8 6 MAXLOGHISTORY 292 7 LOGFILE 8 GROUP 1 '/oradata/orcl/redo01.log' SIZE 120M BLOCKSIZE 512, 9 GROUP 2 '/oradata/orcl/redo02.log' SIZE 120M BLOCKSIZE 512, 10 GROUP 3 '/oradata/orcl/redo03.log' SIZE 120M BLOCKSIZE 512 11 -- STANDBY LOGFILE 12 DATAFILE 13 '/oradata/orcl/system01.dbf', 14 '/oradata/orcl/sysaux01.dbf', 15 '/oradata/orcl/undotbs01.dbf', 16 '/oradata/orcl/users01.dbf', 17 '/oradata/orcl/example01.dbf' 18 CHARACTER SET AL32UTF8 19 ; Control file created. SQL> RECOVER DATABASE; Media recovery complete.
复制
打开数据库,成功恢复控制文件
SQL> ALTER DATABASE OPEN; Database altered. --这里需要将临时文件重用 SQL> ALTER TABLESPACE TEMP ADD TEMPFILE '/oradata/orcl/temp01.dbf' REUSE; Tablespace altered.
复制
三、建议
1、创建多份控制文件,建议分别存放在多个存储的多个文件夹上,防止文件被误删或者存储损坏。
2、打开归档模式。
3、保存当前库的控制文件生成脚本(包括重要信息:dbname,字符集,文件路径)。
4、定期备份数据库文件,防止丢失,建议将备份放置到源端进行保存。


打赏 0
回答交流
Markdown
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
添加图片链接
上传图片
导航目录
Markdown语法参考
请输入正文
提示
提交
相关推荐
oracle 11.2.0.4 表数据脱敏
回答 4
找第三工具。。。。。。。。。。。。。
ORA-00600: internal error code, arguments: [3716]
回答 4
上传附件:zzdb2ora17214i6109930.trc
服务器本地读非常高,怎么快速定位
回答 1
每个实例都拉一个AWR报告,知道时间点就按时间点拉,越短越好
dg备库怎么生成awr报告?
回答 1
11g的备库没有AWR报告,生成的也是主库的信息,只能通过其他方法查看,例如stackspack等。19c中备库是可以配置awr的
oracle11.2.0升级11.2.0.4后能删除原来的11.2.0吗?
回答 6
1.结合告警日志好好排查一下磁盘突然膨胀的原因,我之前11g遇到bug,每次触发就往盘上写一个很大的数据包,后来清理掉了,然后打了补丁才恢复;2.如果1排查没问题,就按你的思路腾笼换鸟,一定先做好全部
每天早上有一段时间log file sync冲高,应该如何查问题所在?
回答 1
1.检查这段时间是否有定时任务。2.检查这段时间监控,是否有资源消耗激增情况。3.检查useadaptivelogfilesync配置。4.对比这段时间AWR和正常时间段AWR。5.检查这段时间日志切
手动收集单条sql执行计划报错,ORA-16957: SQL Analyze time limit interrupt
回答 1
已采纳
没人回答,我来补充下我最后的操作:从trace文件中可以看到有这样一句:fatalerroroccurredwhilescanningredo说明程序在查redo中相关记录的时候,这个redo文件已经
这个sql怎么进行优化
回答 4
已采纳
截图发现,看不清andTOCHAR(A.FBIZDATE,‘yyyymmdd’)>‘20190701’你这种写法,如果A.FBIZDATE有索引,也不会走,需要改成:A.FBIZDATE>
在ORACLE 11G环境下,如何从数据库本身加强安全认证?
回答 2
已采纳
使用强密码策略:设置密码复杂性要求,要求用户选择包含大小写字母、数字和特殊字符的强密码。启用账户锁定功能:配置账户锁定策略,例如在一定的登录失败次数后自动锁定用户账户,以防止暴力破解密码。实施访问控制
oracle 11.2.0.1.0 出现 cursor: pin S wait on X 事件,有什么好的解决办法吗。
回答 4
从awr上找到锁的关键,看看SegmentsbyRowLockWaits这段是什么竞争严重?主要是锁,和操作系统无关。
问题信息
请登录之后查看
邀请回答
暂无人订阅该标签,敬请期待~~

50M
ORACLE 11.2.0 触发器 获取 空间属性的wkt格式,使用 sde.st_astext 函数,数据错乱
25M
求Cylance杀毒软件安装包测试数据库安全
25M
PostgreSQL ERROR: found xmin 2146512304 from before relfrozenxid 2146512317
10M
clickhouse 查询视图需要给基表的权限,有什么办法能场查视图不能查表呢?
10M
oracle apex是否可以使用nfc功能,以及录像保存功能
10M
视图v$sql_cs_selectivity 同一个RANGE_ID之下出现了同一个微词的重复记录。
10M
一个update 语句行锁升级 触发bug导致死锁myql宕机?请大佬帮忙分析下更具体原因
10M
时区升级
10M
Goldengate源端PDB,被克隆替代后,重新配置麻烦,有无其它方便,高效方法,恢复Goldengate?
10M
OGG使用COLMAP部分字段不同步问题