Tue Feb 08 10:47:24 SST 2013
Errors in file /opt/ora10g/admin/OCEAN/udump/ocean_ora_27065.trc:
ORA-00600: internal error code, arguments: [kcblasm_1], [103], [], [], [], [], [], []
Tue Feb 09 10:47:24 SST 2013
Errors in file /opt/ora10g/admin/OCEAN/udump/ocean_ora_27065.trc:
ORA-00600: internal error code, arguments: [kcblasm_1], [103], [], [], [], [], [], []
Tue Feb 10 10:47:24 SST 2013
Errors in file /opt/ora10g/admin/OCEAN/udump/ocean_ora_27065.trc:
ORA-00600: internal error code, arguments: [kcblasm_1], [103], [], [], [], [], [], []
Mon Mar 11 06:08:03 SST 2013
Thread 1 advanced to log sequence 236 (LGWR switch)
Current log# 2 seq# 236 mem# 0: /OCEAN_2/OCEAN/oradata/redo02a.log
Current log# 2 seq# 236 mem# 1: /OCEAN_2/OCEAN/oradata/redo02b.log
Thu Mar 14 00:47:42 SST 2013
Thread 1 advanced to log sequence 237 (LGWR switch)
Current log# 3 seq# 237 mem# 0: /OCEAN_2/OCEAN/oradata/redo03a.log
Current log# 3 seq# 237 mem# 1: /OCEAN_2/OCEAN/oradata/redo03b.log
Tue Mar 17 10:47:24 SST 2013
Errors in file /opt/ora10g/admin/OCEAN/udump/ocean_ora_27065.trc:
ORA-00600: internal error code, arguments: [kcblasm_1], [103], [], [], [], [], [], []
which in this case i can only catch:
Tue Mar 17 10:47:24 SST 2013 ORA-00600: internal error code, arguments: [kcblasm_1], [103], [], [], [], [], [], []
exisitng code with the help from one of our forumers:
Code: Select all
for /F "delims=" %%a in ('findstr "ORA- SST" "alert_OCEAN.log"') do (
set tempfile=D:\testScripts\Check_Alert_DB_BKup\tempfile.txt
set "text=%%a"
if "!text:~0,4!"=="ORA-" (
>>"%tempfile%" echo !d8! %%a>>%output-file%
)
set d8=%%a
)
the above code print out all the ORA-error irregardless of the dates.