0% found this document useful (0 votes)
224 views22 pages

New 4

The database encountered errors when trying to open because the datafiles and redo logs were more recent than the control file. Additional redo logs were added to the database and a recovery process using a backup controlfile was started to make the datafiles consistent with the controlfile. After recovery, the status of most datafiles was online.

Uploaded by

Weizhao Zhang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
224 views22 pages

New 4

The database encountered errors when trying to open because the datafiles and redo logs were more recent than the control file. Additional redo logs were added to the database and a recovery process using a backup controlfile was started to make the datafiles consistent with the controlfile. After recovery, the status of most datafiles was online.

Uploaded by

Weizhao Zhang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 22

Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_ora_11012.

trc:
ORA-01122: database file 79 failed verification check
ORA-01110: data file 79: '/data/oracle/oradata/bjsq_trade.391.975341677'
ORA-01207: file is more recent than control file - old control file
ORA-1122 signalled during: alter database open...
Thu Apr 30 11:36:11 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_m000_11014.trc:
ORA-00338: log 1 of thread 1 is more recent than control file
ORA-00312: online log 1 thread 1: '/data/oracle/oradata/a11204/redo01.log'
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_m000_11014.trc:
ORA-00338: log 1 of thread 1 is more recent than control file
ORA-00312: online log 1 thread 1: '/data/oracle/oradata/a11204/redo01.log'
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_m000_11014.trc:
ORA-00338: log 2 of thread 1 is more recent than control file
ORA-00312: online log 2 thread 1: '/data/oracle/oradata/a11204/redo02.log'
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_m000_11014.trc:
ORA-00338: log 2 of thread 1 is more recent than control file
ORA-00312: online log 2 thread 1: '/data/oracle/oradata/a11204/redo02.log'
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_m000_11014.trc:
ORA-00338: log 3 of thread 1 is more recent than control file
ORA-00312: online log 3 thread 1: '/data/oracle/oradata/a11204/redo03.log'
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_m000_11014.trc:
ORA-00338: log 3 of thread 1 is more recent than control file
ORA-00312: online log 3 thread 1: '/data/oracle/oradata/a11204/redo03.log'
Thu Apr 30 11:40:07 2020

Checkpoint not complete


Current log# 1 seq# 310744 mem# 0: /data/oracle/oradata/a11204/redo01.log
Thread 1 advanced to log sequence 310745 (LGWR switch)
Current log# 2 seq# 310745 mem# 0: /data/oracle/oradata/a11204/redo02.log
Thread 1 cannot allocate new log, sequence 310746
Checkpoint not complete
Current log# 2 seq# 310745 mem# 0: /data/oracle/oradata/a11204/redo02.log
Mon Apr 27 12:36:16 2020
Thread 1 advanced to log sequence 310746 (LGWR switch)
Current log# 3 seq# 310746 mem# 0: /data/oracle/oradata/a11204/redo03.log

SQL> @20200420_create_cro.sql
ORACLE instance started.

Total System Global Area 3.2068E+10 bytes


Fixed Size 2269072 bytes
Variable Size 3892314224 bytes
Database Buffers 2.8119E+10 bytes
Redo Buffers 55242752 bytes
CREATE CONTROLFILE REUSE DATABASE "A11204" NORESETLOGS NOARCHIVELOG
*
ERROR at line 1:
ORA-01503: CREATE CONTROLFILE failed
ORA-01192: must have at least one enabled thread

SQL> ho oerr ora 1192


01192, 00000, "must have at least one enabled thread"
// *Cause: You must specify at least two logfiles from at least one thread
// at the create contolfile command line.
// *Action: Find the missing logfiles and resubmit the command with the newly
// found logfiles included in the command line.
ORACLE instance shut down.

-- 20200420_create_cro.sql file
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "A11204" NORESETLOGS NOARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 200
MAXINSTANCES 8
MAXLOGHISTORY 27396
LOGFILE
GROUP 1 '/data/oracle/oradata/a11204/redo01.log' SIZE 50M BLOCKSIZE 512,
GROUP 2 '/data/oracle/oradata/a11204/redo02.log' SIZE 50M BLOCKSIZE 512,
GROUP 3 '/data/oracle/oradata/a11204/redo03.log' SIZE 50M BLOCKSIZE 512
-- STANDBY LOGFILE
DATAFILE
'/data/oracle/oradata/a11204/system01.dbf',

SQL> @20200420_create_cro.sql
ORACLE instance started.

Total System Global Area 3.2068E+10 bytes


Fixed Size 2269072 bytes
Variable Size 3892314224 bytes
Database Buffers 2.8119E+10 bytes
Redo Buffers 55242752 bytes

Control file created.

SQL> alter database open;


alter database open
*
ERROR at line 1:
ORA-01589: must use RESETLOGS or NORESETLOGS option for database open

SQL> alter database open resetlogs;


alter database open resetlogs
*
ERROR at line 1:
ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: '/data/oracle/oradata/a11204/system01.dbf

SQL> select CHECKPOINT_CHANGE#,count(*) from v$datafile_header group by


checkpoint_change#;

CHECKPOINT_CHANGE# COUNT(*)
------------------ ----------
1270919746 1
1270920918 21
1270921987 40
1270922856 18
1270923921 2
1273759674 80

6 rows selected.

SQL> select CHECKPOINT_CHANGE#,count(*) from v$datafile group by


checkpoint_change#;

CHECKPOINT_CHANGE# COUNT(*)
------------------ ----------
1270919746 1
1270920918 21
1270921987 40
1270922856 18
1270923921 2
1273759674 80

6 rows selected.

SQL> select status ,count(*) from v$datafile group by status;

STATUS COUNT(*)
------- ----------
RECOVER 161
SYSTEM 1

LOGFILE
GROUP 4 '/data/oracle/oradata/a11204/redo04.log' SIZE 500M BLOCKSIZE 512,
GROUP 5 '/data/oracle/oradata/a11204/redo05.log' SIZE 500M BLOCKSIZE 512,
GROUP 6 '/data/oracle/oradata/a11204/redo06.log' SIZE 500M BLOCKSIZE 512,
GROUP 7 '/data/oracle/oradata/a11204/redo07.log' SIZE 500M BLOCKSIZE 512,
GROUP 8 '/data/oracle/oradata/a11204/redo08.log' SIZE 500M BLOCKSIZE 512,
GROUP 9 '/data/oracle/oradata/a11204/redo09.log' SIZE 500M BLOCKSIZE 512

recover database using backup controlfile;

/data/oracle/oradata/a11204/

alter database register logfile '/data/oracle/oradata/a11204/redo04.log';

SQL> select file#,checkpoint_change#,CHECKPOINT_TIME,status,fuzzy,error from


v$datafile_header order by checkpoint_change# desc;

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
79 1273759674 2020-04-29 20;??21:23 ONLINE YES
80 1273759674 2020-04-29 20;??21:23 ONLINE YES
81 1273759674 2020-04-29 20;??21:23 ONLINE YES
82 1273759674 2020-04-29 20;??21:23 ONLINE YES
83 1273759674 2020-04-29 20;??21:23 ONLINE YES
84 1273759674 2020-04-29 20;??21:23 ONLINE YES
85 1273759674 2020-04-29 20;??21:23 ONLINE YES
86 1273759674 2020-04-29 20;??21:23 ONLINE YES
87 1273759674 2020-04-29 20;??21:23 ONLINE YES
88 1273759674 2020-04-29 20;??21:23 ONLINE YES
89 1273759674 2020-04-29 20;??21:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
90 1273759674 2020-04-29 20;??21:23 ONLINE YES
91 1273759674 2020-04-29 20;??21:23 ONLINE YES
92 1273759674 2020-04-29 20;??21:23 ONLINE YES
93 1273759674 2020-04-29 20;??21:23 ONLINE YES
94 1273759674 2020-04-29 20;??21:23 ONLINE YES
95 1273759674 2020-04-29 20;??21:23 ONLINE YES
96 1273759674 2020-04-29 20;??21:23 ONLINE YES
97 1273759674 2020-04-29 20;??21:23 ONLINE YES
98 1273759674 2020-04-29 20;??21:23 ONLINE YES
99 1273759674 2020-04-29 20;??21:23 ONLINE YES
100 1273759674 2020-04-29 20;??21:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
102 1273759674 2020-04-29 20;??21:23 ONLINE YES
103 1273759674 2020-04-29 20;??21:23 ONLINE YES
104 1273759674 2020-04-29 20;??21:23 ONLINE YES
105 1273759674 2020-04-29 20;??21:23 ONLINE YES
106 1273759674 2020-04-29 20;??21:23 ONLINE YES
107 1273759674 2020-04-29 20;??21:23 ONLINE YES
109 1273759674 2020-04-29 20;??21:23 ONLINE YES
110 1273759674 2020-04-29 20;??21:23 ONLINE YES
111 1273759674 2020-04-29 20;??21:23 ONLINE YES
112 1273759674 2020-04-29 20;??21:23 ONLINE YES
113 1273759674 2020-04-29 20;??21:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
114 1273759674 2020-04-29 20;??21:23 ONLINE YES
115 1273759674 2020-04-29 20;??21:23 ONLINE YES
116 1273759674 2020-04-29 20;??21:23 ONLINE YES
117 1273759674 2020-04-29 20;??21:23 ONLINE YES
118 1273759674 2020-04-29 20;??21:23 ONLINE YES
119 1273759674 2020-04-29 20;??21:23 ONLINE YES
120 1273759674 2020-04-29 20;??21:23 ONLINE YES
121 1273759674 2020-04-29 20;??21:23 ONLINE YES
122 1273759674 2020-04-29 20;??21:23 ONLINE YES
123 1273759674 2020-04-29 20;??21:23 ONLINE YES
124 1273759674 2020-04-29 20;??21:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
125 1273759674 2020-04-29 20;??21:23 ONLINE YES
126 1273759674 2020-04-29 20;??21:23 ONLINE YES
127 1273759674 2020-04-29 20;??21:23 ONLINE YES
128 1273759674 2020-04-29 20;??21:23 ONLINE YES
129 1273759674 2020-04-29 20;??21:23 ONLINE YES
130 1273759674 2020-04-29 20;??21:23 ONLINE YES
131 1273759674 2020-04-29 20;??21:23 ONLINE YES
132 1273759674 2020-04-29 20;??21:23 ONLINE YES
134 1273759674 2020-04-29 20;??21:23 ONLINE YES
135 1273759674 2020-04-29 20;??21:23 ONLINE YES
136 1273759674 2020-04-29 20;??21:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
137 1273759674 2020-04-29 20;??21:23 ONLINE YES
138 1273759674 2020-04-29 20;??21:23 ONLINE YES
139 1273759674 2020-04-29 20;??21:23 ONLINE YES
140 1273759674 2020-04-29 20;??21:23 ONLINE YES
141 1273759674 2020-04-29 20;??21:23 ONLINE YES
142 1273759674 2020-04-29 20;??21:23 ONLINE YES
143 1273759674 2020-04-29 20;??21:23 ONLINE YES
144 1273759674 2020-04-29 20;??21:23 ONLINE YES
145 1273759674 2020-04-29 20;??21:23 ONLINE YES
146 1273759674 2020-04-29 20;??21:23 ONLINE YES
147 1273759674 2020-04-29 20;??21:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
148 1273759674 2020-04-29 20;??21:23 ONLINE YES
149 1273759674 2020-04-29 20;??21:23 ONLINE YES
150 1273759674 2020-04-29 20;??21:23 ONLINE YES
151 1273759674 2020-04-29 20;??21:23 ONLINE YES
153 1273759674 2020-04-29 20;??21:23 ONLINE YES
154 1273759674 2020-04-29 20;??21:23 ONLINE YES
155 1273759674 2020-04-29 20;??21:23 ONLINE YES
156 1273759674 2020-04-29 20;??21:23 ONLINE YES
157 1273759674 2020-04-29 20;??21:23 ONLINE YES
158 1273759674 2020-04-29 20;??21:23 ONLINE YES
159 1273759674 2020-04-29 20;??21:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
160 1273759674 2020-04-29 20;??21:23 ONLINE YES
161 1273759674 2020-04-29 20;??21:23 ONLINE YES
162 1273759674 2020-04-29 20;??21:23 ONLINE YES
108 1270923921 2020-04-29 04;??52:42 ONLINE YES
101 1270923921 2020-04-29 04;??52:42 ONLINE YES
65 1270922856 2020-04-29 04;??52:23 ONLINE YES
66 1270922856 2020-04-29 04;??52:23 ONLINE YES
67 1270922856 2020-04-29 04;??52:23 ONLINE YES
68 1270922856 2020-04-29 04;??52:23 ONLINE YES
69 1270922856 2020-04-29 04;??52:23 ONLINE YES
70 1270922856 2020-04-29 04;??52:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
71 1270922856 2020-04-29 04;??52:23 ONLINE YES
72 1270922856 2020-04-29 04;??52:23 ONLINE YES
73 1270922856 2020-04-29 04;??52:23 ONLINE YES
74 1270922856 2020-04-29 04;??52:23 ONLINE YES
75 1270922856 2020-04-29 04;??52:23 ONLINE YES
76 1270922856 2020-04-29 04;??52:23 ONLINE YES
77 1270922856 2020-04-29 04;??52:23 ONLINE YES
78 1270922856 2020-04-29 04;??52:23 ONLINE YES
61 1270922856 2020-04-29 04;??52:23 ONLINE YES
62 1270922856 2020-04-29 04;??52:23 ONLINE YES
63 1270922856 2020-04-29 04;??52:23 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
64 1270922856 2020-04-29 04;??52:23 ONLINE YES
29 1270921987 2020-04-29 04;??51:56 ONLINE YES
59 1270921987 2020-04-29 04;??51:56 ONLINE YES
58 1270921987 2020-04-29 04;??51:56 ONLINE YES
57 1270921987 2020-04-29 04;??51:56 ONLINE YES
56 1270921987 2020-04-29 04;??51:56 ONLINE YES
55 1270921987 2020-04-29 04;??51:56 ONLINE YES
54 1270921987 2020-04-29 04;??51:56 ONLINE YES
53 1270921987 2020-04-29 04;??51:56 ONLINE YES
52 1270921987 2020-04-29 04;??51:56 ONLINE YES
51 1270921987 2020-04-29 04;??51:56 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
50 1270921987 2020-04-29 04;??51:56 ONLINE YES
49 1270921987 2020-04-29 04;??51:56 ONLINE YES
48 1270921987 2020-04-29 04;??51:56 ONLINE YES
47 1270921987 2020-04-29 04;??51:56 ONLINE YES
46 1270921987 2020-04-29 04;??51:56 ONLINE YES
45 1270921987 2020-04-29 04;??51:56 ONLINE YES
44 1270921987 2020-04-29 04;??51:56 ONLINE YES
43 1270921987 2020-04-29 04;??51:56 ONLINE YES
42 1270921987 2020-04-29 04;??51:56 ONLINE YES
41 1270921987 2020-04-29 04;??51:56 ONLINE YES
40 1270921987 2020-04-29 04;??51:56 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
39 1270921987 2020-04-29 04;??51:56 ONLINE YES
21 1270921987 2020-04-29 04;??51:56 ONLINE YES
22 1270921987 2020-04-29 04;??51:56 ONLINE YES
23 1270921987 2020-04-29 04;??51:56 ONLINE YES
24 1270921987 2020-04-29 04;??51:56 ONLINE YES
25 1270921987 2020-04-29 04;??51:56 ONLINE YES
26 1270921987 2020-04-29 04;??51:56 ONLINE YES
27 1270921987 2020-04-29 04;??51:56 ONLINE YES
28 1270921987 2020-04-29 04;??51:56 ONLINE YES
60 1270921987 2020-04-29 04;??51:56 ONLINE YES
30 1270921987 2020-04-29 04;??51:56 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
31 1270921987 2020-04-29 04;??51:56 ONLINE YES
32 1270921987 2020-04-29 04;??51:56 ONLINE YES
33 1270921987 2020-04-29 04;??51:56 ONLINE YES
34 1270921987 2020-04-29 04;??51:56 ONLINE YES
35 1270921987 2020-04-29 04;??51:56 ONLINE YES
36 1270921987 2020-04-29 04;??51:56 ONLINE YES
37 1270921987 2020-04-29 04;??51:56 ONLINE YES
38 1270921987 2020-04-29 04;??51:56 ONLINE YES
20 1270920918 2020-04-29 04;??51:38 ONLINE YES
19 1270920918 2020-04-29 04;??51:38 ONLINE YES
18 1270920918 2020-04-29 04;??51:38 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
17 1270920918 2020-04-29 04;??51:38 ONLINE YES
16 1270920918 2020-04-29 04;??51:38 ONLINE YES
15 1270920918 2020-04-29 04;??51:38 ONLINE YES
14 1270920918 2020-04-29 04;??51:38 ONLINE YES
13 1270920918 2020-04-29 04;??51:38 ONLINE YES
12 1270920918 2020-04-29 04;??51:38 ONLINE YES
11 1270920918 2020-04-29 04;??51:38 ONLINE YES
10 1270920918 2020-04-29 04;??51:38 ONLINE YES
9 1270920918 2020-04-29 04;??51:38 ONLINE YES
8 1270920918 2020-04-29 04;??51:38 ONLINE YES
7 1270920918 2020-04-29 04;??51:38 ONLINE YES

FILE# CHECKPOINT_CHANGE# CHECKPOINT_TIME STATUS FUZ ERROR


---------- ------------------ --------------------- ------- ---
-----------------------------------------------------------------
6 1270920918 2020-04-29 04;??51:38 ONLINE YES
5 1270920918 2020-04-29 04;??51:38 ONLINE YES
4 1270920918 2020-04-29 04;??51:38 ONLINE YES
3 1270920918 2020-04-29 04;??51:38 ONLINE YES
2 1270920918 2020-04-29 04;??51:38 ONLINE YES
1 1270920918 2020-04-29 04;??51:38 ONLINE YES
152 1270920918 2020-04-29 04;??51:38 ONLINE YES
133 1270919746 2020-04-29 04;??51:19 ONLINE YES

162 rows selected.

SQL>

[oracle@tdb ~]$ ls -l /data/oracle/oradata/a11204/*


-rw-r-----. 1 oracle oinstall 47267840 4 月 30 16:31
/data/oracle/oradata/a11204/control01.ctl
-rw-r----- 1 oracle oinstall 16138240 4 月 30 11:41
/data/oracle/oradata/a11204/control01.ctl_2020430.bak
-rw-r-----. 1 oracle oinstall 52429312 4 月 29 19:03
/data/oracle/oradata/a11204/redo01.log
-rw-r-----. 1 oracle oinstall 52429312 4 月 29 18:53
/data/oracle/oradata/a11204/redo02.log
-rw-r-----. 1 oracle oinstall 52429312 4 月 29 18:30
/data/oracle/oradata/a11204/redo03.log
-rw-r----- 1 oracle oinstall 524288512 4 月 29 20:25
/data/oracle/oradata/a11204/redo04.log
-rw-r----- 1 oracle oinstall 524288512 4 月 29 20:27
/data/oracle/oradata/a11204/redo05.log
-rw-r----- 1 oracle oinstall 536870912512 4 月 29 18:30
/data/oracle/oradata/a11204/redo06.log.bak
-rw-r----- 1 oracle oinstall 524288512 4 月 29 20:30
/data/oracle/oradata/a11204/redo07.log
-rw-r----- 1 oracle oinstall 524288512 4 月 29 20:32
/data/oracle/oradata/a11204/redo08.log
-rw-r----- 1 oracle oinstall 524288512 4 月 29 20:35
/data/oracle/oradata/a11204/redo09.log
-rw-r-----. 1 oracle oinstall 2810191872 4 月 30 11:36
/data/oracle/oradata/a11204/sysaux01.dbf
-rw-r-----. 1 oracle oinstall 3061850112 4 月 30 11:36
/data/oracle/oradata/a11204/system01.dbf
-rw-r-----. 1 oracle oinstall 34358697984 4 月 29 20:02
/data/oracle/oradata/a11204/temp01.dbf
-rw-r-----. 1 oracle oinstall 21474844672 4 月 29 19:50
/data/oracle/oradata/a11204/temp02.dbf
-rw-r-----. 1 oracle oinstall 32212262912 4 月 29 16:36
/data/oracle/oradata/a11204/temp03.dbf
-rw-r-----. 1 oracle oinstall 32212262912 12 月 27 11:33
/data/oracle/oradata/a11204/temp11.dbf
-rw-r-----. 1 oracle oinstall 34359730176 4 月 30 11:36
/data/oracle/oradata/a11204/undotbs01.dbf
-rw-r-----. 1 oracle oinstall 460070912 4 月 30 11:36
/data/oracle/oradata/a11204/users01.dbf
[oracle@tdb ~]$ ls -lrt /data/oracle/oradata/a11204/

SQL> select fhrfn,FHRBA_SEQ,FHRBA_BNO,to_date(fhtim,'MM/DD/RR


HH24:MI:SS','NLS_CALENDAR=Gregorian') x$kcvfh from x$kcvfh order by FHRBA_BNO desc;

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
1 312837 2 2020-04-29 04;??51:38
2 312837 2 2020-04-29 04;??51:38
3 312837 2 2020-04-29 04;??51:38
4 312837 2 2020-04-29 04;??51:38
5 312837 2 2020-04-29 04;??51:38
6 312837 2 2020-04-29 04;??51:38
7 312837 2 2020-04-29 04;??51:38
8 312837 2 2020-04-29 04;??51:38
9 312837 2 2020-04-29 04;??51:38
10 312837 2 2020-04-29 04;??51:38
11 312837 2 2020-04-29 04;??51:38

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
12 312837 2 2020-04-29 04;??51:38
13 312837 2 2020-04-29 04;??51:38
14 312837 2 2020-04-29 04;??51:38
15 312837 2 2020-04-29 04;??51:38
16 312837 2 2020-04-29 04;??51:38
17 312837 2 2020-04-29 04;??51:38
18 312837 2 2020-04-29 04;??51:38
19 312837 2 2020-04-29 04;??51:38
20 312837 2 2020-04-29 04;??51:38
21 312838 2 2020-04-29 04;??51:56
22 312838 2 2020-04-29 04;??51:56

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
23 312838 2 2020-04-29 04;??51:56
24 312838 2 2020-04-29 04;??51:56
25 312838 2 2020-04-29 04;??51:56
26 312838 2 2020-04-29 04;??51:56
27 312838 2 2020-04-29 04;??51:56
28 312838 2 2020-04-29 04;??51:56
29 312838 2 2020-04-29 04;??51:56
30 312838 2 2020-04-29 04;??51:56
31 312838 2 2020-04-29 04;??51:56
32 312838 2 2020-04-29 04;??51:56
33 312838 2 2020-04-29 04;??51:56

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
34 312838 2 2020-04-29 04;??51:56
35 312838 2 2020-04-29 04;??51:56
36 312838 2 2020-04-29 04;??51:56
37 312838 2 2020-04-29 04;??51:56
38 312838 2 2020-04-29 04;??51:56
39 312838 2 2020-04-29 04;??51:56
40 312838 2 2020-04-29 04;??51:56
41 312838 2 2020-04-29 04;??51:56
42 312838 2 2020-04-29 04;??51:56
43 312838 2 2020-04-29 04;??51:56
44 312838 2 2020-04-29 04;??51:56

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
45 312838 2 2020-04-29 04;??51:56
46 312838 2 2020-04-29 04;??51:56
47 312838 2 2020-04-29 04;??51:56
48 312838 2 2020-04-29 04;??51:56
49 312838 2 2020-04-29 04;??51:56
50 312838 2 2020-04-29 04;??51:56
51 312838 2 2020-04-29 04;??51:56
52 312838 2 2020-04-29 04;??51:56
53 312838 2 2020-04-29 04;??51:56
54 312838 2 2020-04-29 04;??51:56
55 312838 2 2020-04-29 04;??51:56

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
56 312838 2 2020-04-29 04;??51:56
57 312838 2 2020-04-29 04;??51:56
58 312838 2 2020-04-29 04;??51:56
59 312838 2 2020-04-29 04;??51:56
60 312838 2 2020-04-29 04;??51:56
61 312839 2 2020-04-29 04;??52:23
62 312839 2 2020-04-29 04;??52:23
63 312839 2 2020-04-29 04;??52:23
64 312839 2 2020-04-29 04;??52:23
65 312839 2 2020-04-29 04;??52:23
66 312839 2 2020-04-29 04;??52:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
67 312839 2 2020-04-29 04;??52:23
68 312839 2 2020-04-29 04;??52:23
69 312839 2 2020-04-29 04;??52:23
70 312839 2 2020-04-29 04;??52:23
71 312839 2 2020-04-29 04;??52:23
72 312839 2 2020-04-29 04;??52:23
73 312839 2 2020-04-29 04;??52:23
74 312839 2 2020-04-29 04;??52:23
75 312839 2 2020-04-29 04;??52:23
76 312839 2 2020-04-29 04;??52:23
77 312839 2 2020-04-29 04;??52:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
78 312839 2 2020-04-29 04;??52:23
79 315343 2 2020-04-29 20;??21:23
80 315343 2 2020-04-29 20;??21:23
81 315343 2 2020-04-29 20;??21:23
82 315343 2 2020-04-29 20;??21:23
83 315343 2 2020-04-29 20;??21:23
84 315343 2 2020-04-29 20;??21:23
85 315343 2 2020-04-29 20;??21:23
86 315343 2 2020-04-29 20;??21:23
87 315343 2 2020-04-29 20;??21:23
88 315343 2 2020-04-29 20;??21:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
89 315343 2 2020-04-29 20;??21:23
90 315343 2 2020-04-29 20;??21:23
91 315343 2 2020-04-29 20;??21:23
92 315343 2 2020-04-29 20;??21:23
93 315343 2 2020-04-29 20;??21:23
94 315343 2 2020-04-29 20;??21:23
95 315343 2 2020-04-29 20;??21:23
96 315343 2 2020-04-29 20;??21:23
97 315343 2 2020-04-29 20;??21:23
98 315343 2 2020-04-29 20;??21:23
99 315343 2 2020-04-29 20;??21:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
100 315343 2 2020-04-29 20;??21:23
101 312840 2 2020-04-29 04;??52:42
102 315343 2 2020-04-29 20;??21:23
103 315343 2 2020-04-29 20;??21:23
104 315343 2 2020-04-29 20;??21:23
105 315343 2 2020-04-29 20;??21:23
106 315343 2 2020-04-29 20;??21:23
107 315343 2 2020-04-29 20;??21:23
108 312840 2 2020-04-29 04;??52:42
109 315343 2 2020-04-29 20;??21:23
110 315343 2 2020-04-29 20;??21:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
111 315343 2 2020-04-29 20;??21:23
112 315343 2 2020-04-29 20;??21:23
113 315343 2 2020-04-29 20;??21:23
114 315343 2 2020-04-29 20;??21:23
115 315343 2 2020-04-29 20;??21:23
116 315343 2 2020-04-29 20;??21:23
117 315343 2 2020-04-29 20;??21:23
118 315343 2 2020-04-29 20;??21:23
119 315343 2 2020-04-29 20;??21:23
120 315343 2 2020-04-29 20;??21:23
121 315343 2 2020-04-29 20;??21:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
122 315343 2 2020-04-29 20;??21:23
123 315343 2 2020-04-29 20;??21:23
124 315343 2 2020-04-29 20;??21:23
125 315343 2 2020-04-29 20;??21:23
126 315343 2 2020-04-29 20;??21:23
127 315343 2 2020-04-29 20;??21:23
128 315343 2 2020-04-29 20;??21:23
129 315343 2 2020-04-29 20;??21:23
130 315343 2 2020-04-29 20;??21:23
131 315343 2 2020-04-29 20;??21:23
132 315343 2 2020-04-29 20;??21:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
133 312836 2 2020-04-29 04;??51:19
134 315343 2 2020-04-29 20;??21:23
135 315343 2 2020-04-29 20;??21:23
136 315343 2 2020-04-29 20;??21:23
137 315343 2 2020-04-29 20;??21:23
138 315343 2 2020-04-29 20;??21:23
139 315343 2 2020-04-29 20;??21:23
140 315343 2 2020-04-29 20;??21:23
141 315343 2 2020-04-29 20;??21:23
142 315343 2 2020-04-29 20;??21:23
143 315343 2 2020-04-29 20;??21:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
144 315343 2 2020-04-29 20;??21:23
145 315343 2 2020-04-29 20;??21:23
146 315343 2 2020-04-29 20;??21:23
147 315343 2 2020-04-29 20;??21:23
148 315343 2 2020-04-29 20;??21:23
149 315343 2 2020-04-29 20;??21:23
150 315343 2 2020-04-29 20;??21:23
151 315343 2 2020-04-29 20;??21:23
152 312837 2 2020-04-29 04;??51:38
153 315343 2 2020-04-29 20;??21:23
154 315343 2 2020-04-29 20;??21:23

FHRFN FHRBA_SEQ FHRBA_BNO X$KCVFH


---------- ---------- ---------- ---------------------
155 315343 2 2020-04-29 20;??21:23
156 315343 2 2020-04-29 20;??21:23
157 315343 2 2020-04-29 20;??21:23
158 315343 2 2020-04-29 20;??21:23
159 315343 2 2020-04-29 20;??21:23
160 315343 2 2020-04-29 20;??21:23
161 315343 2 2020-04-29 20;??21:23
162 315343 2 2020-04-29 20;??21:23

162 rows selected.


recover database using backup controlfile;

recover database until sequence 315343 noredo;

select fhrfn,FHRBA_SEQ,FHRBA_BNO x$kcvfh from x$kcvfh order by FHRBA_BNO desc;

SQL> recover database using backup controlfile;


ORA-00279: change 1270919746 generated at 04/29/2020 04:51:19 needed for thread 1
ORA-00289: suggestion : /arch/1_312836_1027264492.dbf
ORA-00280: change 1270919746 for thread 1 is in sequence #312836

Specify log: {<RET>=suggested | filename | AUTO | CANCEL}


/data/oracle/oradata/a11204/redo01.log
ORA-00310: archived log contains sequence 315318; sequence 312836 required
ORA-00334: archived log: '/data/oracle/oradata/a11204/redo01.log'

Specify log: {<RET>=suggested | filename | AUTO | CANCEL}


/data/oracle/oradata/a11204/redo08.log
ORA-00310: archived log contains sequence 315347; sequence 312836 required
ORA-00334: archived log: '/data/oracle/oradata/a11204/redo08.log'

SQL> recover database using backup controlfile;


ORA-00279: change 1270919746 generated at 04/29/2020 04:51:19 needed for thread 1
ORA-00289: suggestion : /arch/1_312836_1027264492.dbf
ORA-00280: change 1270919746 for thread 1 is in sequence #312836

Specify log: {<RET>=suggested | filename | AUTO | CANCEL}


/data/oracle/oradata/a11204/redo09.log
ORA-00310: archived log contains sequence 315348; sequence 312836 required
ORA-00334: archived log: '/data/oracle/oradata/a11204/redo09.log'

undo_management=MANUAL
undo_tablespace=system
event='1555 trace name errorstack forever,level 3'
_allow_resetlogs_corruption=true

startup nomount pfile='/tmp/pfile.ora';

alter database open resetlogs;

SQL> alter database open resetlogs;


alter database open resetlogs
*
ERROR at line 1:
ORA-00603: ORACLE server session terminated by fatal error
ORA-00600: internal error code, arguments: [2662], [0], [1270919759], [0],
[1270920857], [12583040], [], [], [], [], [], []
ORA-00600: internal error code, arguments: [2662], [0], [1270919758], [0],
[1270920857], [12583040], [], [], [], [], [], []
ORA-01092: ORACLE instance terminated. Disconnection forced
ORA-00600: internal error code, arguments: [2662], [0], [1270919756], [0],
[1270920857], [12583040], [], [], [], [], [], []
Process ID: 12956
Session ID: 1345 Serial number: 3

oradebug setmypid

oradebug dumpvar sga kcsgscn_

SQL> oradebug dumpvar sga kcsgscn_


kcslf kcsgscn_ [06001AE70, 06001AEA0) = 00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000 00000000 00000000 6001AB50 00000000
SQL>

1270920857

4CC0B699

99B6C04C
SQL>

oradebug poke 0x06001AE70 4 0x99B6C04C

startup mount pfile='/tmp/pfile.ora';

oradebug setmypid
oradebug event 10046 trace name context forever,level 12
oradebug tracefile_name

SQL> oradebug setmypid


Statement processed.
SQL> oradebug event 10046 trace name context forever,level 12
Statement processed.
SQL> oradebug tracefile_name
/u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_ora_14217.trc
SQL> alter database open;

Database altered.

SQL> select open_mode from v$database;


select open—ឭ ode from v$database
*
ERROR at line 1:
ORA-00911: invalid character

SQL> select open_mode from v$database;


OPEN_MODE
--------------------
READ WRITE
SQL> select current_scn from v$database;

CURRENT_SCN
-----------
2584369441
1270919756
SQL>

Thu Apr 30 18:02:42 2020


DIA0 started with pid=8, OS id=14187
Thu Apr 30 18:02:42 2020
MMAN started with pid=9, OS id=14189
Thu Apr 30 18:02:42 2020
DBW0 started with pid=10, OS id=14191
Thu Apr 30 18:02:42 2020
DBW1 started with pid=11, OS id=14193
Thu Apr 30 18:02:42 2020
DBW2 started with pid=12, OS id=14195
Thu Apr 30 18:02:42 2020
LGWR started with pid=13, OS id=14197
Thu Apr 30 18:02:42 2020
CKPT started with pid=14, OS id=14199
Thu Apr 30 18:02:42 2020
SMON started with pid=15, OS id=14201
Thu Apr 30 18:02:42 2020
RECO started with pid=16, OS id=14203
Thu Apr 30 18:02:43 2020
MMON started with pid=17, OS id=14205
Thu Apr 30 18:02:43 2020
MMNL started with pid=18, OS id=14207
starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)
(PROTOCOL=TCP))'...
starting up 1 shared server(s) ...
ORACLE_BASE from environment = /u01/app/oracle
Thu Apr 30 18:02:43 2020
ALTER DATABASE MOUNT
Thu Apr 30 18:02:46 2020
Sweep [inc][169649]: completed
Sweep [inc2][169649]: completed
Sweep [inc2][169648]: completed
Sweep [inc2][169647]: completed
Sweep [inc2][169646]: completed
Successful mount of redo thread 1, with mount id 743784387
Database mounted in Exclusive Mode
Lost write protection disabled
Completed: ALTER DATABASE MOUNT
Thu Apr 30 18:03:26 2020
alter database open
Beginning crash recovery of 1 threads
parallel recovery started with 23 processes
Started redo scan
Completed redo scan
read 4 KB redo, 4 data blocks need recovery
Started redo application at
Thread 1: logseq 2, block 3
Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0
Mem# 0: /data/oracle/oradata/a11204/redotmp02.log
Completed redo application of 0.00MB
Completed crash recovery at
Thread 1: logseq 2, block 12, scn 2578930869
4 data blocks read, 4 data blocks written, 4 redo k-bytes read
Thu Apr 30 18:03:26 2020
Thread 1 advanced to log sequence 3 (thread open)
Thread 1 opened at log sequence 3
Current log# 3 seq# 3 mem# 0:
/u01/app/oracle/fast_recovery_area/A11204/onlinelog/o1_mf_3_hbo8f739_.log
Successful open of redo thread 1
MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
Thu Apr 30 18:03:26 2020
SMON: enabling cache recovery
Undo initialization finished serial:0 start:18303904 end:18303904 diff:0 (0
seconds)
Verifying file header compatibility for 11g tablespace encryption..
Verifying 11g file header compatibility for tablespace encryption completed
SMON: enabling tx recovery
*********************************************************************
WARNING: The following temporary tablespaces contain no files.
This condition can occur when a backup controlfile has
been restored. It may be necessary to add files to these
tablespaces. That can be done using the SQL statement:

ALTER TABLESPACE <tablespace_name> ADD TEMPFILE

Alternatively, if these temporary tablespaces are no longer


needed, then they can be dropped.
Empty temporary tablespace: TEMP
Empty temporary tablespace: TEMP1
*********************************************************************
Database Characterset is ZHS16GBK
No Resource Manager plan active
replication_dependency_tracking turned off (no async multimaster replication found)
Thu Apr 30 18:03:30 2020
Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x7F7700000304]
[PC:0x94AEF5B, kcbipnns()+29] [flags: 0x0, count: 1]
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc
(incident=177646):
ORA-00600: internal error code, arguments: [4137], [12.17.1751401], [0], [0], [],
[], [], [], [], [], [], []
Incident details in:
/u01/app/oracle/diag/rdbms/a11204/tdb/incident/incdir_177646/tdb_smon_14201_i177646
.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_p023_14271.trc
(incident=177886):
ORA-07445: exception encountered: core dump [kcbipnns()+29] [SIGSEGV]
[ADDR:0x7F7700000304] [PC:0x94AEF5B] [Address not mapped to object] []
Incident details in:
/u01/app/oracle/diag/rdbms/a11204/tdb/incident/incdir_177886/tdb_p023_14271_i177886
.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
ORACLE Instance tdb (pid = 15) - Error 600 encountered while recovering transaction
(12, 17).
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc:
ORA-00600: internal error code, arguments: [4137], [12.17.1751401], [0], [0], [],
[], [], [], [], [], [], []
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc
(incident=177647):
ORA-00600: internal error code, arguments: [4137], [12.17.1751401], [0], [0], [],
[], [], [], [], [], [], []
Incident details in:
/u01/app/oracle/diag/rdbms/a11204/tdb/incident/incdir_177647/tdb_smon_14201_i177647
.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
Thu Apr 30 18:03:31 2020
Dumping diagnostic data in directory=[cdmp_20200430180331], requested by
(instance=1, osid=14201 (SMON)), summary=[incident=177646].
ORACLE Instance tdb (pid = 15) - Error 600 encountered while recovering transaction
(12, 17).
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc
(incident=177648):
ORA-00600: internal error code, arguments: [4137], [12.17.1751401], [0], [0], [],
[], [], [], [], [], [], []
Incident details in:
/u01/app/oracle/diag/rdbms/a11204/tdb/incident/incdir_177648/tdb_smon_14201_i177648
.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
ORACLE Instance tdb (pid = 15) - Error 600 encountered while recovering transaction
(12, 17).
Dumping diagnostic data in directory=[cdmp_20200430180333], requested by
(instance=1, osid=14201 (SMON)), summary=[incident=177647].
Thu Apr 30 18:03:33 2020
Sweep [inc][177646]: completed
Thu Apr 30 18:03:33 2020
Sweep [inc][177647]: completed
Thu Apr 30 18:03:33 2020
Sweep [inc][177648]: completed
Thu Apr 30 18:03:42 2020
Starting background process QMNC
Thu Apr 30 18:03:42 2020
QMNC started with pid=70, OS id=14336
Thu Apr 30 18:03:46 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_mmon_14205.trc:
ORA-04068: existing state of packages has been discarded
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at "SYS.DBMS_HA_ALERTS_PRVT", line 118
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_mmon_14205.trc:
ORA-04068: existing state of packages has been discarded
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at "SYS.DBMS_HA_ALERTS_PRVT", line 309
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_mmon_14205.trc:
ORA-01555: snapshot too old: rollback segment number with name "" too small
minact-scn: got error during useg scan e:1555 usn:12
minact-scn: useg scan erroring out with error e:1555
Thu Apr 30 18:03:47 2020
db_recovery_file_dest_size of 4182 MB is 2.39% used. This is a
user-specified limit on the amount of space that will be used by this
database for recovery-related files, and does not reflect the amount of
space available in the underlying filesystem or ASM diskgroup.
Thu Apr 30 18:03:47 2020
Dumping diagnostic data in directory=[cdmp_20200430180347], requested by
(instance=1, osid=14205 (MMON)), summary=[abnormal process termination].
Completed: alter database open
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_mmon_14205.trc:
ORA-04068: existing state of packages has been discarded
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at "SYS.DBMS_HA_ALERTS_PRVT", line 118
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_mmon_14205.trc:
ORA-04068: existing state of packages has been discarded
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at "SYS.DBMS_HA_ALERTS_PRVT", line 309
ORA-04065: not executed, altered or dropped stored procedure
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06508: PL/SQL: could not find program unit being called:
"BJ_TEST_MONITOR.YD_TRADE_PRODUCT_ROLE_STAT"
ORA-06512: at line 1
Thu Apr 30 18:03:48 2020
Starting background process CJQ0
Thu Apr 30 18:03:48 2020
SMON: slave died unexpectedly, downgrading to serial recovery
Thu Apr 30 18:03:48 2020
CJQ0 started with pid=45, OS id=14352
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc
(incident=177649):
ORA-00600: internal error code, arguments: [4137], [12.6.1711641], [0], [0], [],
[], [], [], [], [], [], []
Incident details in:
/u01/app/oracle/diag/rdbms/a11204/tdb/incident/incdir_177649/tdb_smon_14201_i177649
.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
Dumping diagnostic data in directory=[cdmp_20200430180348], requested by
(instance=1, osid=14201 (SMON)), summary=[incident=177649].
ORACLE Instance tdb (pid = 15) - Error 600 encountered while recovering transaction
(12, 6).
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc:
ORA-00600: internal error code, arguments: [4137], [12.6.1711641], [0], [0], [],
[], [], [], [], [], [], []
Thu Apr 30 18:03:48 2020
Sweep [inc][177886]: completed
Sweep [inc2][177886]: completed
Sweep [inc2][177648]: completed
Sweep [inc2][177647]: completed
Sweep [inc2][177646]: completed
Thu Apr 30 18:03:48 2020
Sweep [inc][177649]: completed
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc
(incident=177650):
ORA-00600: internal error code, arguments: [4137], [12.6.1711641], [0], [0], [],
[], [], [], [], [], [], []
Incident details in:
/u01/app/oracle/diag/rdbms/a11204/tdb/incident/incdir_177650/tdb_smon_14201_i177650
.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
ORACLE Instance tdb (pid = 15) - Error 600 encountered while recovering transaction
(12, 6).
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_smon_14201.trc
(incident=177651):
ORA-00600: internal error code, arguments: [4137], [12.6.1711641], [0], [0], [],
[], [], [], [], [], [], []
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
ORACLE Instance tdb (pid = 15) - Error 600 encountered while recovering transaction
(12, 6).
Thu Apr 30 18:03:49 2020
Sweep [inc][177650]: completed
Dumping diagnostic data in directory=[cdmp_20200430180349], requested by
(instance=1, osid=14201 (SMON)), summary=[abnormal process termination].
Thu Apr 30 18:03:52 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j000_14367.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 124 ³
ORA-01552: ·ȏµͳ±¼➧BJSQ_TRADE' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "BJSQ_TRADE.P_SYN_LOG", line 13
ORA-06512: ՚ "BJSQ_TRADE.P_SYN_MIDTABLE_DATA", line 12
ORA-06512: ՚ line 1
Thu Apr 30 18:03:52 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j003_14373.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1403 ³
ORA-01552: ·ȏµͳ±¼➧BJ_TEST_TRADE' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "BJ_TEST_TRADE.EVERY_DAY_SYNC_MAX_MIN_PRICE", line 3
ORA-06512: ՚ line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j003_14373.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1403 ³
ORA-01552: ·ȏµͳ±¼➧BJ_TEST_TRADE' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "BJ_TEST_TRADE.EVERY_DAY_SYNC_MAX_MIN_PRICE", line 3
ORA-06512: ՚ line 1
Thu Apr 30 18:03:52 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j006_14379.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1404 ³
ORA-01552: ·ȏµͳ±¼➧BJ_TEST_SELECTION' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "BJ_TEST_SELECTION.DAILY_SYNC_BARG_MAX_MIN_PRICE", line 3
ORA-06512: ՚ line 1
Thu Apr 30 18:03:52 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j004_14375.trc
(incident=178150):
ORA-00600: ڲ¿´´骠 ²ϊꪴecgsc:kcbz_objdchk], [0], [0], [1], [], [], [], [], [], [],
[], []
Incident details in:
/u01/app/oracle/diag/rdbms/a11204/tdb/incident/incdir_178150/tdb_j004_14375_i178150
.trc
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j006_14379.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1404 ³
ORA-01552: ·ȏµͳ±¼➧BJ_TEST_SELECTION' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "BJ_TEST_SELECTION.DAILY_SYNC_BARG_MAX_MIN_PRICE", line 3
ORA-06512: ՚ line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j003_14373.trc:
ORA-00604: µ‫ݹ‬矓 QL ¼¶±³ִ
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 290, τ¼þ 1, ¿瞲 033 (2)
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1403 ³
ORA-01552: ·ȏµͳ±¼➧BJ_TEST_TRADE' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "BJ_TEST_TRADE.EVERY_DAY_SYNC_MAX_MIN_PRICE", line 3
ORA-06512: ՚ line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j006_14379.trc:
ORA-00604: µ‫ݹ‬矓 QL ¼¶±³ִ
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 290, τ¼þ 1, ¿瞲 033 (2)
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1404 ³
ORA-01552: ·ȏµͳ±¼➧BJ_TEST_SELECTION' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "BJ_TEST_SELECTION.DAILY_SYNC_BARG_MAX_MIN_PRICE", line 3
ORA-06512: ՚ line 1
Thu Apr 30 18:03:54 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j005_14377.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 27 ³
ORA-01552: ·ȏµͳ±¼➧BJNDMAIN' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "NDMAIN.P_GENERATE_SFDA_REL", line 3
ORA-06512: ՚ line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j004_14375.trc:
ORA-00600: ڲ¿´´骠 ²ϊꪴecgsc:kcbz_objdchk], [0], [0], [1], [], [], [], [], [], [],
[], []
ORA-06512: ՚ "NDMAIN.P_CAT_AUTH_GSP_OTC_REPORT", line 119
ORA-06512: ՚ line 1
Thu Apr 30 18:03:55 2020
Thread 1 advanced to log sequence 4 (LGWR switch)
Current log# 1 seq# 4 mem# 0: /data/oracle/oradata/a11204/redotmp01.log
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j005_14377.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1265 ³
ORA-01552: ·ȏµͳ±¼➧YGCG_TRADE' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "YGCG_TRADE.INSERT_Z_BID_ITEM_TRADE", line 3
ORA-06512: ՚ line 1
Thu Apr 30 18:03:57 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j007_14381.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 28 ³
ORA-25153: ʱ±¼ 厪¿
ORA-06512: ՚ "NDMAIN.P_UPDATE_AREA_PRICE", line 3
ORA-06512: ՚ line 1
Thu Apr 30 18:03:57 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j004_14391.trc:
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j007_14381.trc:
ORA-12012: error on auto execute of job 161
ORA-01552: cannot use system rollback segment for non-system tablespace
'YGCG_NDMAIN'
ORA-06512: at "YGCG_NDMAIN.P_GENERATE_SFDA_REL", line 3
ORA-06512: at line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j004_14391.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 30 ³
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 39, τ¼þ 1, ¿瞳 61152 (2)
ORA-06512: ՚ "NDMAIN.P_INSERT_CAT_AUTH_PRICE_TABLES", line 392
ORA-06512: ՚ line 1
Thu Apr 30 18:04:01 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j002_14371.trc:
Thu Apr 30 18:04:02 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j006_14379.trc:
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j004_14391.trc:
ORA-00001: unique constraint (.) violated
ORA-00001: unique constraint (SYS.SCHEDULER$_INSTANCE_PK) violated
Thu Apr 30 18:04:06 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j003_14373.trc:
ORA-12012: error on auto execute of job 9973
ORA-25153: Temporary Tablespace is Empty
ORA-06512: at "YGCG_NDMAIN.P_UPDATE_AREA_PRICE", line 3
ORA-06512: at line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j003_14373.trc:
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j003_14373.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 31 ³
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 39, τ¼þ 1, ¿瞳 61152 (2)
ORA-06512: ՚ "NDMAIN.P_INSERT_CAT_AUTH_PPR_TABLES", line 226
ORA-06512: ՚ line 1
Thu Apr 30 18:04:08 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j008_14383.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 34 ³
ORA-01552: ·ȏµͳ±¼➧BJNDMAIN' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "NDMAIN.P_UPDATE_MBR_PRODUCT_PFILE", line 55
ORA-06512: ՚ line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j008_14383.trc:
ORA-00001: unique constraint (.) violated
ORA-00001: unique constraint (SYS.SCHEDULER$_INSTANCE_PK) violated
Thu Apr 30 18:04:09 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j005_14377.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1263 ³
ORA-01552: ·ȏµͳ±¼➧YGCG_TRADE' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "YGCG_TRADE.TRADE_EVERYDAY_RECORD", line 33
ORA-06512: ՚ line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j003_14373.trc:
ORA-00001: unique constraint (.) violated
ORA-00001: unique constraint (SYS.SCHEDULER$_INSTANCE_PK) violated
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j005_14377.trc:
ORA-00001: unique constraint (.) violated
ORA-00001: unique constraint (SYS.SCHEDULER$_INSTANCE_PK) violated
Thu Apr 30 18:04:09 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j001_14369.trc:
ORA-12012: error on auto execute of job "ORACLE_OCM"."MGMT_CONFIG_JOB"
ORA-04023: Object SELECT INST_ID,INSTANCE_NUMBER FROM GV$INSTANCE
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j001_14369.trc:
ORA-00001: unique constraint (.) violated
ORA-00001: unique constraint (SYS.SCHEDULER$_INSTANCE_PK) violated
ORA-04023: Object SELECT INST_ID,INSTANCE_NUMBER FROM GV$INSTANCE
ORA-04023: Object SELECT INST_ID,INSTANCE_NUMBER FROM GV$INSTANCE
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j006_14379.trc:
ORA-12012: error on auto execute of job 215982
ORA-01552: cannot use system rollback segment for non-system tablespace
'YGCG_NDMAIN'
ORA-06512: at "YGCG_NDMAIN.P_CAT_AUTH_GMP_PRODUCT", line 90
ORA-06512: at line 1
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j008_14383.trc:
ORA-12012: error on auto execute of job "SYS"."PURGE_LOG"
ORA-04023: Object
select unique( nvl2(job_subname,
'"'||owner||'"."'||job_name||'"."'||job_subname ||'"',
'"'||owner||'"."'||job_name||'"')) jn from scheduler$_notification
where bitand(flags,1)=1 and owner||'"'||job_name not in
( select owner||'"'||job_name from dba_scheduler_jobs union all
select qt.user_data.object_owner||'"'||qt.user_data.object_name
from sys.scheduler$_event_qtab qt where state<2 )
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j008_14383.trc:
ORA-00001: unique constraint (.) violated
ORA-00001: unique constraint (SYS.SCHEDULER$_INSTANCE_PK) violated
ORA-04023: Object
select unique( nvl2(job_subname,
'"'||owner||'"."'||job_name||'"."'||job_subname ||'"',
'"'||owner||'"."'||job_name||'"')) jn from scheduler$_notification
where bitand(flags,1)=1 and owner||'"'||job_name not in
( select owner||'"'||job_name from dba_scheduler_jobs union all
select qt.user_data.object_owner||'"'||qt.user_data.object_name
from sys.scheduler$_event_qtab qt where state<2 )
ORA-04023: Object
select unique( nvl2(job_subname,
'"'||owner||'"."'||job_name||'"."'||job_subname ||'"',
'"'||owner||'"."'||job_name||'"')) jn from scheduler$_notification
where bitand(flags,1)=1 and owner||'"'||job_name not in
( select owner||'"'||job_name from dba_scheduler_jobs union all
select qt.user_data.object_owner||'"'||qt.user_data.object_name
from sys.scheduler$_event_qtab qt where
Thu Apr 30 18:04:17 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j002_14371.trc:
ORA-12012: error on auto execute of job "BJ_TEST_TRADE"."BUILD_YPB_JOB"
ORA-01552: cannot use system rollback segment for non-system tablespace
'BJ_TEST_TRADE'
ORA-06512: at "BJ_TEST_TRADE.BUILD_YPB", line 3
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j002_14371.trc:
ORA-00001: unique constraint (.) violated
ORA-00001: unique constraint (SYS.SCHEDULER$_INSTANCE_PK) violated
ORA-01552: cannot use system rollback segment for non-system tablespace
'BJ_TEST_TRADE'
ORA-06512: at "BJ_TEST_TRADE.BUILD_YPB", line 3
ORA-01552: cannot use system rollback segment for non-system tablespace
'BJ_TEST_TRADE'
ORA-06512: at "BJ_TEST_TRADE.BUILD_YPB", line 3
Thu Apr 30 18:04:23 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j007_14381.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 29 ³
ORA-01552: ·ȏµͳ±¼➧BJNDMAIN' ²»Ŝʹԃϵͳ»ٍ˶
ORA-06512: ՚ "NDMAIN.P_UPDATE_CATDRUG_RELATE_TABLES", line 204
ORA-06512: ՚ line 1
Thu Apr 30 18:04:27 2020
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j009_14385.trc:
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j009_14385.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1405 ³
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 290, τ¼þ 1, ¿瞲 033 (2)
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j009_14385.trc:
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1405 ³
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 290, τ¼þ 1, ¿瞲 033 (2)
Errors in file /u01/app/oracle/diag/rdbms/a11204/tdb/trace/tdb_j009_14385.trc:
ORA-00604: µ‫ݹ‬矓 QL ¼¶±³ִ
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 290, τ¼þ 1, ¿瞲 033 (2)
ORA-12012: ؔ¶¯ִѐ‫ط‬ҵ 1405 ³
ORA-08102: δ֒µ½̷ӽ¹‫ؼ‬꠶Տ 냠 290, τ¼þ 1, ¿瞲 033 (2)
Thu Apr 30 18:04:34 2020
Thread 1 advanced to log sequence 5 (LGWR switch)
Current log# 2 seq# 5 mem# 0: /data/oracle/oradata/a11204/redotmp02.log
Thu Apr 30 18:04:52 2020
Sweep [inc][178150]: completed
Sweep [inc][177651]: completed
Sweep [inc2][178150]: completed
Sweep [inc2][177650]: completed
Sweep [inc2][177649]: completed
Thu Apr 30 18:05:03 2020
Thread 1 advanced to log sequence 6 (LGWR switch)
Current log# 3 seq# 6 mem# 0:
/u01/app/oracle/fast_recovery_area/A11204/onlinelog/o1_mf_3_hbo8f739_.log
Thread 1 advanced to log sequence 7 (LGWR switch)

You might also like