You are on page 1of 28

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

January 06, 2012 7:57 AM

Question Title: Urgent: ORACLE initialization or shutdown in progress


Zone: Oracle Database Author's Account Type: Premium Service Member Author's Subject Experience: Unknown Time Zone: Pacific Standard Time (GMT-08:00) Points: 500

Author: egovernment Date: 01/02/2012 - 05:17AM PST

I can't log to Oracle database and I get this error message


1: ORACLE initialization or shutdown in progress

What the solution ? Expert Comment Author: praveencpk Date: 01/02/2012 - 05:45AM PST

check the alertlog file and post the error in it, this will be mostly the space issuse for the datafiles of the database. you can also try this. c:>sqlplus /nolog sql> connect sys as sysdba password: ******* check out this doc for more info http://dbaforums.org/oracle/index.php?showtopic=16688 Expert Comment first of all as mentioned check out for any errors in alert log. after this connect to database as sqlplus "/ as sysdba" and shutdown the database using shut immediate command after this startup the database, incase there are any accidental errors, the database will not startup, it will throw an error while starting up. if it starts up without any error, then your issue is resolved, if there are any errors, please post them here.. Expert Comment Author: awking00 Date: 01/03/2012 - 07:38AM PST Author: wasimibm Date: 01/02/2012 - 09:57AM PST

Are you an end user or developer? If so, your DBA or SA has probably taken the database down for some reason and you should contact them. Author Comment first of all as mentioned check out for any errors in alert log How I do that ? Are you an end user or developer? If so, your DBA or SA has probably taken the database down for some reason and you should contact them. There no DBA or SA I'm a developer Expert Comment If you are developer, do you know where the DB is hosted? Who is the owner of the machine? You will find Alert logs where the DB is hosted Author: ajexpert Date: 01/03/2012 - 01:36PM PST Author: egovernment Date: 01/03/2012 - 12:02PM PST

Expert Comment first of all as mentioned check out for any errors in alert log How I do that ? ok.. have you done the rest of steps??? shutting down and starting up? if not, can you please do them to see if your problem is solved.. if the error persists, login to oracle db server to locate the location of alert log, you can easily get it in case your db is running, using the command.

Author: wasimibm Date: 01/03/2012 - 06:05PM PST

1 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

select name,value from v$parameter where name ='background_core_dump'; incase your db is not running, go to the $ORACLE_HOME folder(in case db is hosted on windows, you can go to environment variables to find out what your oracle_home is, in case of unix you have to login using oracle login to find out this). try to do a shutdown and startup, if this doesnot work then come back with details, what is OS of your db, then we can analyze further Expert Comment Author: awking00 Date: 01/04/2012 - 08:10AM PST

There is bound to be a database administrator or system administrator of some sort. Who is it that has the ability to shut down or start up the database? That's who you need to answer your question. Author Comment Hi wasimibm after this startup the database, incase there are any accidental errors, the database will not startup, it will throw an error while starting up. Can you tell me what I write with the startup command ? Author Comment I do the following: 1: sqlplus "/ as sysdba" 2: shutdown 3: startup

Author: egovernment Date: 01/04/2012 - 08:28AM PST

Author: egovernment Date: 01/04/2012 - 08:40AM PST

And the result in attach file 1.jpg (81 KB) Result

Author Comment Hi awking00

Author: egovernment Date: 01/04/2012 - 09:07AM PST

There is bound to be a database administrator or system administrator of some sort. Who is it that has the ability to shut down or start up the database? No there any DBA or SA in our company only I'm available as a developer Expert Comment execute these commands
1: recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF';

Author: wasimibm Date: 01/04/2012 - 10:10AM PST

if this doesnot work, then execute this


1: startup mount;

after this execute the above command again


1: recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF';

it will give you a message as Media recovery complete. after this execute the command

2 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

1: alter database open;

more info can be seen on these links http://www.orafaq.com/forum/t/62097/2/ www.dba-oracle.com/t_ora_01113_file_string_needs_media_recovery.htm

Author Comment Hi wasimibm Please check attach files 2.jpg (165 KB) 2

Author: egovernment Date: 01/04/2012 - 10:55AM PST

3.jpg (164 KB) 3

4.jpg (139 KB) 4

3 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

Expert Comment type exit over there and login to database again as sqlplus " / as sysdba" shutdown immediate; startup mount; alter database open; this should work

Author: wasimibm Date: 01/04/2012 - 11:04AM PST

else follow the suggestions from the burleson site on resolving this error, you just need to restart the ipcs process for allocating memory to oracle background process. http://www.dba-oracle.com/t_ora_24324_service_handle_not_initialized.htm Expert Comment Author: wasimibm Date: 01/04/2012 - 11:06AM PST

as this is a windows machine.. you might have problems finding the root user, just restart the machine.. all processes will automatically restart... Author Comment wasimibm I restart the machine after that I do the following command:
1: shutdown immediate; 2: 3: startup mount; 4: 5: alter database open;

Author: egovernment Date: 01/04/2012 - 11:41AM PST

Please check attach file 5.jpg (126 KB) 5

4 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

Expert Comment ok.. i think you have got some problem with datafiles, they might need a proper recovery... try to recover the files in the same way we did earlier..
1: recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF';

Author: wasimibm Date: 01/04/2012 - 11:45AM PST

after recovery is complete


1: shutdown immediate; 2: 3: startup mount; 4: 5: alter database open;

lets try to see what happens, even if this shows another file needs recovery we will do the same process, we will recover one file at a time and will repeat these steps..

Author Comment wasimibm Please check the result


1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: Microsoft Windows [Version 6.1.7600] Copyright (c) 2009 Microsoft Corporation. C:\Users\Administrator>sqlplus / as sysdba SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jan 4 23:39:50 2012 Copyright (c) 1982, 2005, Oracle. All rights reserved.

Author: egovernment Date: 01/04/2012 - 11:59AM PST

All rights reserved.

Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, OLAP and Data Mining options SQL> shutdown immediate; ORA-01109: database not open Database dismounted. ORACLE instance shut down. SQL> startup mount; ORACLE instance started. Total System Global Area 293601280 bytes Fixed Size 1330520 bytes Variable Size 103461544 bytes Database Buffers 184549376 bytes Redo Buffers 4259840 bytes Database mounted. SQL> alter database open; alter database open * ERROR at line 1: ORA-01113: file 1 needs media recovery ORA-01110: data file 1: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF'

5 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

38: 39: SQL> recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF'; 40: Media recovery complete. 41: SQL> shutdown immediate; 42: ORA-01109: database not open 43: 44: 45: Database dismounted. 46: ORACLE instance shut down. 47: SQL> startup mount; 48: ORACLE instance started. 49: 50: Total System Global Area 293601280 bytes 1330520 bytes 51: Fixed Size 103461544 bytes 52: Variable Size 184549376 bytes 53: Database Buffers 4259840 bytes 54: Redo Buffers 55: Database mounted. 56: SQL> alter database open; 57: alter database open 58: * 59: ERROR at line 1: 60: ORA-01113: file 2 needs media recovery 61: ORA-01110: data file 2: 62: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\UNDOTBS01.DBF' 63: 64: 65: SQL> recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\UNDOTBS01.DBF'; 66: 67: Media recovery complete. 68: SQL> shutdown immediate; 69: ORA-01109: database not open 70: 71: 72: Database dismounted. 73: ORACLE instance shut down. 74: SQL> startup mount; 75: ORACLE instance started. 76: 77: Total System Global Area 293601280 bytes 1330520 bytes 78: Fixed Size 103461544 bytes 79: Variable Size 184549376 bytes 80: Database Buffers 4259840 bytes 81: Redo Buffers 82: Database mounted. 83: SQL> alter database open; 84: alter database open 85: * 86: ERROR at line 1: 87: ORA-01113: file 3 needs media recovery 88: ORA-01110: data file 3: 89: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSAUX01.DBF' 90: 91: 92: SQL> recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSAUX01.DBF'; 93: Media recovery complete. 94: SQL> shutdown immediate; 95: ORA-01109: database not open 96: 97: 98: Database dismounted. 99: ORACLE instance shut down. 100: SQL> startup mount; 101: ORACLE instance started. 102: 103: Total System Global Area 293601280 bytes 1330520 bytes 104: Fixed Size 103461544 bytes 105: Variable Size 184549376 bytes 106: Database Buffers 4259840 bytes 107: Redo Buffers 108: Database mounted. 109: SQL> alter database open; 110: alter database open 111: * 112: ERROR at line 1: 113: ORA-01113: file 4 needs media recovery 114: ORA-01110: data file 4: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USERS01.DBF' 115: 116: 117: SQL> recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USERS01.DBF'; 118: Media recovery complete. 119: SQL> shutdown immediate; 120: ORA-01109: database not open 121: 122: 123: Database dismounted. 124: ORACLE instance shut down. 125: SQL> alter database open; 126: alter database open 127: * 128: ERROR at line 1: 129: ORA-01034: ORACLE not available 130: 131: 132: SQL> startup mount; 133: ORACLE instance started. 134: 135: Total System Global Area 293601280 bytes 1330520 bytes 136: Fixed Size 103461544 bytes 137: Variable Size 184549376 bytes 138: Database Buffers 4259840 bytes 139: Redo Buffers 140: Database mounted. 141: SQL> alter database open; 142: alter database open 143: * 144: ERROR at line 1: 145: ORA-01113: file 5 needs media recovery 146: ORA-01110: data file 5: 147: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\EARCHIVE.DBF' 148: 149: 150: SQL> recover datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\EARCHIVE.DBF'; 151: Media recovery complete. 152: SQL> shutdown immediate; 153: ORA-01109: database not open 154: 155: 156: Database dismounted.

6 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

157: ORACLE instance shut down. 158: SQL> startup mount; 159: ORACLE instance started. 160: 161: Total System Global Area 293601280 bytes 162: Fixed Size 1330520 bytes 163: Variable Size 103461544 bytes 164: Database Buffers 184549376 bytes 165: Redo Buffers 4259840 bytes 166: Database mounted. 167: SQL> alter database open; 168: alter database open 169: * 170: ERROR at line 1: 171: ORA-01092: ORACLE instance terminated. Disconnection forced 172: 173: 174: SQL>

Expert Comment

Author: wasimibm Date: 01/04/2012 - 12:09PM PST

shutdown immediate; startup mount; alter database recover; alter database open; if this doesn't help then Well.. i think, its time to examine your alert log.. some thing has probably gone wrong..!! paste last 200 lines of your alert log to examine further.. try these steps once now.. all these sites are saying that there might be problem at OS level (ie., file system) http://www.dba-oracle.com/t_ora_01092_oracle_instance_terminated.htm https://forums.oracle.com/forums/thread.jspa?threadID=1059824 Author Comment wasimibm I execute the commands
1: SQL> shutdown immediate; 2: ORA-24324: service handle not initialized 3: ORA-01041: internal error. hostdef extension doesn't exist 4: SQL> startup mount; 5: ORA-24324: service handle not initialized 6: ORA-01041: internal error. hostdef extension doesn't exist 7: SQL> alter database recover; 8: ERROR: 9: ORA-03114: not connected to ORACLE 10: 11: 12: SQL> alter database open; 13: ERROR: 14: ORA-03114: not connected to ORACLE

Author: egovernment Date: 01/05/2012 - 06:33AM PST

Author Comment Any solution please ? Expert Comment you haven't posted the contents of your alert log file.. we need to examine it.. to check out why the errors have occured..!! Author Comment ok wasimibm Tell me step by step how I can go to the alert log file Expert Comment :) .. if your database is mount state even we could have found out easily.. now its a little bit difficult... how ever try this... go to command prompt and type echo %ORACLE_HOME%

Author: egovernment Date: 01/05/2012 - 06:35AM PST

Author: wasimibm Date: 01/05/2012 - 09:50AM PST

Author: egovernment Date: 01/05/2012 - 10:08AM PST

Author: wasimibm Date: 01/05/2012 - 10:20AM PST

7 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

normally it would be present in directory like this C:\admin\local\bdump where admin and bdump are standard folder and local is the sid of your oracle database.. if you are on oracle10g try to search out for admin folder in your machine or simply search for alert.log in all directories..

Expert Comment

Author: wasimibm Date: 01/05/2012 - 10:29AM PST

sorry.. oracle home is different.typo mistake.. ignore abt ORACLE_HOME.. try to find out the directory structure mentioned over there C:\admin\local\bdump where in admin and bdump would be present in your system too, local will not be present as it is <ORACLE_SID> ie., your oracle_sid name folder would be present ideally in your case... if you can post in next 15 mins, i would be able to have a look at your alert log, else i am logging for today.. will check it out 2mrow.. Author Comment There no command give me the folder contain alert log file ? Expert Comment Author: wasimibm Date: 01/05/2012 - 10:42AM PST Author: egovernment Date: 01/05/2012 - 10:38AM PST

bdump is the folder which will contain the alert log, alert_<oracle_sid>.log is the alert log of the database where the alert is written normally.. if your database is up, then we would have found out easily by doing the following steps

1: C:\Documents and Settings\Administrator>sqlplus "/ as sysdba" 2: 3: SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jan 6 00:11:09 2012 4: 5: Copyright (c) 1982, 2005, Oracle. All rights reserved. 6: 7: 8: Connected to: 9: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production 10: With the Partitioning, OLAP and Data Mining options 11: 12: SQL> show parameter background; 13: 14: NAME TYPE VALUE 15: ------------------------------------ ----------- -----------------------16: background_core_dump string partial 17: background_dump_dest string [b]C:\ADMIN\LOCAL\BDUMP[/b] 18: SQL>

these are results of my machine. your machine will have a different output..!!!

Author Comment You can found alert file from this link alert file Author Comment
1: SQL> shutdown immediate; 2: ORA-01109: database not open 3: 4: 5: Database dismounted. 6: ORACLE instance shut down. 7: SQL> startup mount; 8: ORACLE instance started. 9: 10: Total System Global Area 293601280 bytes 11: Fixed Size 1330520 bytes 12: Variable Size 103461544 bytes 13: Database Buffers 184549376 bytes 4259840 bytes 14: Redo Buffers 15: Database mounted. 16: SQL> alter database recover; 17: 18: Database altered. 19: 20: SQL> alter database open; 21: alter database open 22: * 23: ERROR at line 1: 24: ORA-01092: ORACLE instance terminated. Disconnection forced

Author: egovernment Date: 01/05/2012 - 11:55AM PST

Author: egovernment Date: 01/05/2012 - 12:09PM PST

Expert Comment

Author: wasimibm Date: 01/05/2012 - 06:40PM PST

8 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

I'm afraid.. what file have you placed over there.. i just opened it and my system has got hung.. later on i found that is little more than 1GB, i just requested a some last few lines(200-300).

Author Comment Hi wasimibm This is alert log file and size near 1 giga so this database since many years I can't open this log file or need pc with big memory more than 6 giga Author Comment There a command to display last 200 lines from SQL ? Author Comment Ok I copy these lines from alert log file
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85:

Author: egovernment Date: 01/05/2012 - 09:19PM PST

Author: egovernment Date: 01/05/2012 - 09:22PM PST

Author: egovernment Date: 01/05/2012 - 10:17PM PST

Wed Jan 04 22:35:08 2012 alter database open Wed Jan 04 22:35:08 2012 ORA-1113 signalled during: alter database open... Wed Jan 04 22:35:52 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USER01.DBF' Wed Jan 04 22:35:52 2012 ORA-1179 signalled during: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USER01.DBF' Wed Jan 04 22:36:10 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USERS01.DBF' Wed Jan 04 22:36:10 2012 Media Recovery Start parallel recovery started with 15 processes Wed Jan 04 22:36:10 2012 Recovery of Online Redo Log: Thread 1 Group 1 Seq 1 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG Completed: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USERS01.DBF' Wed Jan 04 22:36:20 2012 alter database open Wed Jan 04 22:36:21 2012 ORA-1113 signalled during: alter database open... Wed Jan 04 22:37:01 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\EARCHIVE.DBF' Wed Jan 04 22:37:01 2012 Media Recovery Start parallel recovery started with 15 processes Wed Jan 04 22:37:02 2012 Recovery of Online Redo Log: Thread 1 Group 1 Seq 1 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG Completed: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\EARCHIVE.DBF' Wed Jan 04 22:37:08 2012 alter database open Wed Jan 04 22:37:08 2012 Beginning crash recovery of 1 threads parallel recovery started with 15 processes Wed Jan 04 22:37:09 2012 Started redo scan Wed Jan 04 22:37:09 2012 Completed redo scan 0 redo blocks read, 0 data blocks need recovery Wed Jan 04 22:37:09 2012 Started redo application at Thread 1: logseq 1, block 3, scn 34367875 Wed Jan 04 22:37:09 2012 Recovery of Online Redo Log: Thread 1 Group 1 Seq 1 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG Wed Jan 04 22:37:09 2012 Completed redo application Wed Jan 04 22:37:09 2012 Completed crash recovery at Thread 1: logseq 1, block 3, scn 34387876 0 data blocks read, 0 data blocks written, 0 redo blocks read Wed Jan 04 22:37:09 2012 Thread 1 advanced to log sequence 2 Thread 1 opened at log sequence 2 Current log# 2 seq# 2 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Successful open of redo thread 1 Wed Jan 04 22:37:09 2012 MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set Wed Jan 04 22:37:09 2012 SMON: enabling cache recovery Wed Jan 04 22:37:10 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_7740.trc: ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], [] Wed Jan 04 22:37:11 2012 Doing block recovery for file 1 block 22 Block recovery from logseq 2, block 3 to scn 34387883 Wed Jan 04 22:37:11 2012 Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Block recovery stopped at EOT rba 2.5.16 Block recovery completed at rba 2.5.16, scn 0.34387882 Doing block recovery for file 1 block 9 Block recovery from logseq 2, block 3 to scn 34387881 Wed Jan 04 22:37:11 2012 Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Block recovery completed at rba 2.5.16, scn 0.34387882 Wed Jan 04 22:37:11 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_7740.trc: ORA-00604: error occurred at recursive SQL level 1 ORA-00607: Internal error occurred while making a change to a data block ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], []

...

9 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204:

Error 604 happened during db open, shutting down database USER: terminating instance due to error 604 Wed Jan 04 22:37:11 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_psp0_6816.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:11 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_pmon_5236.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:13 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_reco_6844.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:13 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_smon_5040.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:13 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_ckpt_2300.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:13 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_lgwr_6588.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:14 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw1_4924.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:14 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw0_1092.trc: ORA-00604: error occurred at recursive SQL level Wed Jan 04 22:37:14 2012 Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_mman_8040.trc: ORA-00604: error occurred at recursive SQL level

Instance terminated by USER, pid = 7740 ORA-1092 signalled during: alter database open... ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=2096 PSP0 started with pid=4, OS id=7288 MMAN started with pid=6, OS id=5960 DBW0 started with pid=8, OS id=5348 DBW1 started with pid=10, OS id=7780 LGWR started with pid=12, OS id=7836 CKPT started with pid=14, OS id=2300 SMON started with pid=16, OS id=5092 RECO started with pid=18, OS id=6016 CJQ0 started with pid=20, OS id=4760 MMON started with pid=22, OS id=4936 MMNL started with pid=24, OS id=7360 Wed Jan 04 23:23:39 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:23:40 2012 alter database mount exclusive Wed Jan 04 23:23:44 2012 Setting recovery target incarnation to 2 Wed Jan 04 23:23:44 2012 Successful mount of redo thread 1, with mount id 3025588540 Wed Jan 04 23:23:44 2012 Database mounted in Exclusive Mode Completed: alter database mount exclusive Wed Jan 04 23:23:44 2012 alter database open ORA-1113 signalled during: alter database open... Wed Jan 04 23:24:33 2012 Shutting down instance: further logons disabled Wed Jan 04 23:24:33 2012 Stopping background process CJQ0 Wed Jan 04 23:24:34 2012 Stopping background process MMNL Wed Jan 04 23:24:35 2012 Stopping background process MMON Wed Jan 04 23:24:36 2012 Shutting down instance (immediate) License high water mark = 2 Wed Jan 04 23:24:36 2012 Stopping Job queue slave processes Wed Jan 04 23:24:36 2012 Job queue slave processes stopped Waiting for dispatcher 'D000' to shutdown All dispatchers and shared servers shutdown Wed Jan 04 23:24:38 2012 ALTER DATABASE CLOSE NORMAL ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... Wed Jan 04 23:24:38 2012 ALTER DATABASE DISMOUNT

10 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323:

Completed: ALTER DATABASE DISMOUNT ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Wed Jan 04 23:25:13 2012 Adjusting the default value of parameter parallel_max_servers from 320 to 135 due to the value of parameter processes (150) Wed Jan 04 23:25:13 2012 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Picked latch-free SCN scheme 2 Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST Autotune of undo retention is turned on. IMODE=BR ILAT =18 LICENSE_MAX_USERS = 0 SYS auditing is disabled ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=5964 PSP0 started with pid=4, OS id=7824 MMAN started with pid=6, OS id=5756 DBW0 started with pid=8, OS id=7788 DBW1 started with pid=10, OS id=6612 LGWR started with pid=12, OS id=2548 CKPT started with pid=14, OS id=6324 SMON started with pid=16, OS id=7468 RECO started with pid=18, OS id=6728 CJQ0 started with pid=20, OS id=7812 MMON started with pid=22, OS id=4924 MMNL started with pid=24, OS id=6640 Wed Jan 04 23:25:13 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:25:14 2012 ALTER DATABASE MOUNT Wed Jan 04 23:25:18 2012 Setting recovery target incarnation to 2 Wed Jan 04 23:25:18 2012 Successful mount of redo thread 1, with mount id 3025587610 Wed Jan 04 23:25:18 2012 Database mounted in Exclusive Mode Completed: ALTER DATABASE MOUNT Wed Jan 04 23:25:47 2012 alter database open Wed Jan 04 23:25:47 2012 ORA-1113 signalled during: alter database open... ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PSP0 started with pid=4, OS id=3052 MMAN started with pid=6, OS id=3056 DBW0 started with pid=8, OS id=3240 DBW1 started with pid=10, OS id=3268 LGWR started with pid=12, OS id=3276 CKPT started with pid=14, OS id=3300 SMON started with pid=16, OS id=3312 RECO started with pid=18, OS id=3320

11 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442:

CJQ0 started with pid=20, OS id=3328 MMON started with pid=22, OS id=3336 MMNL started with pid=24, OS id=3344 Wed Jan 04 23:33:19 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:33:19 2012 alter database mount exclusive PMON started with pid=2, OS id=3048 Setting recovery target incarnation to 2 Wed Jan 04 23:33:24 2012 Successful mount of redo thread 1, with mount id 3025561983 Wed Jan 04 23:33:24 2012 Database mounted in Exclusive Mode Completed: alter database mount exclusive Wed Jan 04 23:33:24 2012 alter database open ORA-1113 signalled during: alter database open... Wed Jan 04 23:40:28 2012 Shutting down instance: further logons disabled Wed Jan 04 23:40:28 2012 Stopping background process CJQ0 Wed Jan 04 23:40:28 2012 Stopping background process MMNL Wed Jan 04 23:40:29 2012 Stopping background process MMON Wed Jan 04 23:40:30 2012 Shutting down instance (immediate) License high water mark = 1 Wed Jan 04 23:40:30 2012 Stopping Job queue slave processes Wed Jan 04 23:40:30 2012 Job queue slave processes stopped Waiting for dispatcher 'D000' to shutdown All dispatchers and shared servers shutdown Wed Jan 04 23:40:32 2012 ALTER DATABASE CLOSE NORMAL ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... Wed Jan 04 23:40:32 2012 ALTER DATABASE DISMOUNT Completed: ALTER DATABASE DISMOUNT ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Wed Jan 04 23:41:00 2012 Adjusting the default value of parameter parallel_max_servers from 320 to 135 due to the value of parameter processes (150) Wed Jan 04 23:41:00 2012 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Picked latch-free SCN scheme 2 Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST Autotune of undo retention is turned on. IMODE=BR ILAT =18 LICENSE_MAX_USERS = 0 SYS auditing is disabled ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=416 PSP0 started with pid=4, OS id=888 MMAN started with pid=6, OS id=1416 DBW0 started with pid=8, OS id=2024 DBW1 started with pid=10, OS id=4776 LGWR started with pid=12, OS id=7028 CKPT started with pid=14, OS id=1008 SMON started with pid=16, OS id=7032 RECO started with pid=18, OS id=5504 CJQ0 started with pid=20, OS id=5684 MMON started with pid=22, OS id=6348 MMNL started with pid=24, OS id=5888 Wed Jan 04 23:41:01 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:41:02 2012 ALTER DATABASE MOUNT Wed Jan 04 23:41:06 2012 Setting recovery target incarnation to 2 Wed Jan 04 23:41:06 2012 Successful mount of redo thread 1, with mount id 3025552718 Wed Jan 04 23:41:06 2012 Database mounted in Exclusive Mode Completed: ALTER DATABASE MOUNT Wed Jan 04 23:41:26 2012 alter database open

12 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561:

Wed Jan 04 23:41:26 2012 ORA-1113 signalled during: alter database open... Wed Jan 04 23:47:42 2012 db_recovery_file_dest_size of 2048 MB is 0.00% 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. Wed Jan 04 23:51:32 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF' Wed Jan 04 23:51:33 2012 Media Recovery Start parallel recovery started with 15 processes Wed Jan 04 23:51:34 2012 Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Completed: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF' Wed Jan 04 23:52:15 2012 Shutting down instance: further logons disabled Wed Jan 04 23:52:15 2012 Stopping background process CJQ0 Wed Jan 04 23:52:16 2012 Stopping background process MMNL Wed Jan 04 23:52:17 2012 Stopping background process MMON Wed Jan 04 23:52:18 2012 Shutting down instance (immediate) License high water mark = 16 Wed Jan 04 23:52:18 2012 Stopping Job queue slave processes Wed Jan 04 23:52:18 2012 Job queue slave processes stopped Waiting for dispatcher 'D000' to shutdown All dispatchers and shared servers shutdown Wed Jan 04 23:52:20 2012 ALTER DATABASE CLOSE NORMAL ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... Wed Jan 04 23:52:20 2012 ALTER DATABASE DISMOUNT Completed: ALTER DATABASE DISMOUNT ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Wed Jan 04 23:52:49 2012 Adjusting the default value of parameter parallel_max_servers from 320 to 135 due to the value of parameter processes (150) Wed Jan 04 23:52:49 2012 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Picked latch-free SCN scheme 2 Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST Autotune of undo retention is turned on. IMODE=BR ILAT =18 LICENSE_MAX_USERS = 0 SYS auditing is disabled ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=1360 PSP0 started with pid=4, OS id=6700 MMAN started with pid=6, OS id=1660 DBW0 started with pid=8, OS id=188 DBW1 started with pid=10, OS id=6436 LGWR started with pid=12, OS id=5512 CKPT started with pid=14, OS id=6724 SMON started with pid=16, OS id=3468 RECO started with pid=18, OS id=2828 CJQ0 started with pid=20, OS id=6232 MMON started with pid=22, OS id=3472 MMNL started with pid=24, OS id=6568 Wed Jan 04 23:52:49 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:52:50 2012 ALTER DATABASE MOUNT Wed Jan 04 23:52:55 2012 Setting recovery target incarnation to 2 Wed Jan 04 23:52:55 2012 Successful mount of redo thread 1, with mount id 3025590546 Wed Jan 04 23:52:55 2012 Database mounted in Exclusive Mode Completed: ALTER DATABASE MOUNT Wed Jan 04 23:53:21 2012 alter database open Wed Jan 04 23:53:21 2012 ORA-1113 signalled during: alter database open...

13 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680:

Wed Jan 04 23:54:24 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\UNDOTBS01.DBF' Wed Jan 04 23:54:24 2012 Media Recovery Start parallel recovery started with 15 processes Wed Jan 04 23:54:25 2012 Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Completed: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\UNDOTBS01.DBF' Wed Jan 04 23:54:53 2012 Shutting down instance: further logons disabled Wed Jan 04 23:54:53 2012 Stopping background process MMNL Wed Jan 04 23:54:54 2012 Stopping background process MMON Wed Jan 04 23:54:54 2012 Stopping background process CJQ0 Wed Jan 04 23:54:55 2012 Shutting down instance (immediate) License high water mark = 16 Wed Jan 04 23:54:55 2012 Stopping Job queue slave processes Wed Jan 04 23:54:55 2012 Job queue slave processes stopped Waiting for dispatcher 'D000' to shutdown All dispatchers and shared servers shutdown Wed Jan 04 23:54:56 2012 ALTER DATABASE CLOSE NORMAL ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... Wed Jan 04 23:54:56 2012 ALTER DATABASE DISMOUNT Completed: ALTER DATABASE DISMOUNT ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Wed Jan 04 23:55:09 2012 Adjusting the default value of parameter parallel_max_servers from 320 to 135 due to the value of parameter processes (150) Wed Jan 04 23:55:09 2012 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Picked latch-free SCN scheme 2 Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST Autotune of undo retention is turned on. IMODE=BR ILAT =18 LICENSE_MAX_USERS = 0 SYS auditing is disabled ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=6712 PSP0 started with pid=4, OS id=7144 MMAN started with pid=6, OS id=6496 DBW0 started with pid=8, OS id=1932 DBW1 started with pid=10, OS id=1948 LGWR started with pid=12, OS id=6648 CKPT started with pid=14, OS id=5764 SMON started with pid=16, OS id=2900 RECO started with pid=18, OS id=5720 CJQ0 started with pid=20, OS id=6916 MMON started with pid=22, OS id=568 MMNL started with pid=24, OS id=1572 Wed Jan 04 23:55:10 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:55:11 2012 ALTER DATABASE MOUNT Wed Jan 04 23:55:15 2012 Setting recovery target incarnation to 2 Wed Jan 04 23:55:15 2012 Successful mount of redo thread 1, with mount id 3025594015 Wed Jan 04 23:55:15 2012 Database mounted in Exclusive Mode Completed: ALTER DATABASE MOUNT Wed Jan 04 23:56:04 2012 alter database open Wed Jan 04 23:56:04 2012 ORA-1113 signalled during: alter database open... Wed Jan 04 23:56:52 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSAUX01.DBF' Wed Jan 04 23:56:52 2012 Media Recovery Start parallel recovery started with 15 processes Wed Jan 04 23:56:53 2012 Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0

14 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788: 789: 790: 791: 792: 793: 794: 795: 796: 797: 798: 799:

Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Completed: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSAUX01.DBF' Wed Jan 04 23:57:09 2012 Shutting down instance: further logons disabled Wed Jan 04 23:57:09 2012 Stopping background process MMNL Wed Jan 04 23:57:10 2012 Stopping background process CJQ0 Wed Jan 04 23:57:11 2012 Stopping background process MMON Wed Jan 04 23:57:11 2012 Shutting down instance (immediate) License high water mark = 16 Wed Jan 04 23:57:11 2012 Stopping Job queue slave processes Wed Jan 04 23:57:11 2012 Job queue slave processes stopped Waiting for dispatcher 'D000' to shutdown All dispatchers and shared servers shutdown Wed Jan 04 23:57:13 2012 ALTER DATABASE CLOSE NORMAL ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... Wed Jan 04 23:57:13 2012 ALTER DATABASE DISMOUNT Completed: ALTER DATABASE DISMOUNT ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Wed Jan 04 23:57:27 2012 Adjusting the default value of parameter parallel_max_servers from 320 to 135 due to the value of parameter processes (150) Wed Jan 04 23:57:27 2012 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Picked latch-free SCN scheme 2 Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST Autotune of undo retention is turned on. IMODE=BR ILAT =18 LICENSE_MAX_USERS = 0 SYS auditing is disabled ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=3240 PSP0 started with pid=4, OS id=5956 MMAN started with pid=6, OS id=2664 DBW0 started with pid=8, OS id=6968 DBW1 started with pid=10, OS id=2844 LGWR started with pid=12, OS id=5964 CKPT started with pid=14, OS id=3488 SMON started with pid=16, OS id=4712 RECO started with pid=18, OS id=2492 CJQ0 started with pid=20, OS id=6208 MMON started with pid=22, OS id=6580 MMNL started with pid=24, OS id=2768 Wed Jan 04 23:57:27 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:57:28 2012 ALTER DATABASE MOUNT Wed Jan 04 23:57:33 2012 Setting recovery target incarnation to 2 Wed Jan 04 23:57:33 2012 Successful mount of redo thread 1, with mount id 3025564712 Wed Jan 04 23:57:33 2012 Database mounted in Exclusive Mode Completed: ALTER DATABASE MOUNT Wed Jan 04 23:57:44 2012 alter database open Wed Jan 04 23:57:44 2012 ORA-1113 signalled during: alter database open... Wed Jan 04 23:58:15 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USERS01.DBF' Wed Jan 04 23:58:16 2012 Media Recovery Start parallel recovery started with 15 processes Wed Jan 04 23:58:16 2012 Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Completed: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\USERS01.DBF' Wed Jan 04 23:58:30 2012 Shutting down instance: further logons disabled Wed Jan 04 23:58:30 2012 Stopping background process MMNL Wed Jan 04 23:58:31 2012

15 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

800: 801: 802: 803: 804: 805: 806: 807: 808: 809: 810: 811: 812: 813: 814: 815: 816: 817: 818: 819: 820: 821: 822: 823: 824: 825: 826: 827: 828: 829: 830: 831: 832: 833: 834: 835: 836: 837: 838: 839: 840: 841: 842: 843: 844: 845: 846: 847: 848: 849: 850: 851: 852: 853: 854: 855: 856: 857: 858: 859: 860: 861: 862: 863: 864: 865: 866: 867: 868: 869: 870: 871: 872: 873: 874: 875: 876: 877: 878: 879: 880: 881: 882: 883: 884: 885: 886: 887: 888: 889: 890: 891: 892: 893: 894: 895: 896: 897: 898: 899: 900: 901: 902: 903: 904: 905: 906: 907: 908: 909: 910: 911: 912: 913: 914: 915: 916: 917: 918:

Stopping background process MMON Wed Jan 04 23:58:31 2012 Stopping background process CJQ0 Wed Jan 04 23:58:32 2012 Shutting down instance (immediate) License high water mark = 16 Wed Jan 04 23:58:32 2012 Stopping Job queue slave processes Wed Jan 04 23:58:32 2012 Job queue slave processes stopped Waiting for dispatcher 'D000' to shutdown All dispatchers and shared servers shutdown Wed Jan 04 23:58:34 2012 ALTER DATABASE CLOSE NORMAL ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... Wed Jan 04 23:58:34 2012 ALTER DATABASE DISMOUNT Completed: ALTER DATABASE DISMOUNT ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active ARCH: Archival disabled due to shutdown: 1089 Shutting down archive processes Archiving is disabled Archive process shutdown avoided: 0 active Wed Jan 04 23:58:57 2012 Adjusting the default value of parameter parallel_max_servers from 320 to 135 due to the value of parameter processes (150) Wed Jan 04 23:58:57 2012 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Picked latch-free SCN scheme 2 Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST Autotune of undo retention is turned on. IMODE=BR ILAT =18 LICENSE_MAX_USERS = 0 SYS auditing is disabled ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=6476 PSP0 started with pid=4, OS id=7084 MMAN started with pid=6, OS id=6248 DBW0 started with pid=8, OS id=824 DBW1 started with pid=10, OS id=1584 LGWR started with pid=12, OS id=1992 CKPT started with pid=14, OS id=6996 SMON started with pid=16, OS id=2488 RECO started with pid=18, OS id=6264 CJQ0 started with pid=20, OS id=1324 MMON started with pid=22, OS id=6720 MMNL started with pid=24, OS id=6004 Wed Jan 04 23:58:57 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Wed Jan 04 23:58:58 2012 ALTER DATABASE MOUNT Wed Jan 04 23:59:02 2012 Setting recovery target incarnation to 2 Wed Jan 04 23:59:02 2012 Successful mount of redo thread 1, with mount id 3025566082 Wed Jan 04 23:59:02 2012 Database mounted in Exclusive Mode Completed: ALTER DATABASE MOUNT Wed Jan 04 23:59:16 2012 alter database open Wed Jan 04 23:59:16 2012 ORA-1113 signalled during: alter database open... Wed Jan 04 23:59:57 2012 ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\EARCHIVE.DBF' Wed Jan 04 23:59:57 2012 Media Recovery Start parallel recovery started with 15 processes Wed Jan 04 23:59:58 2012 Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0 Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG Completed: ALTER DATABASE RECOVER datafile 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\EARCHIVE.DBF' Thu Jan 05 00:00:12 2012 Shutting down instance: further logons disabled Thu Jan 05 00:00:12 2012 Stopping background process MMNL Thu Jan 05 00:00:13 2012 Stopping background process CJQ0 Thu Jan 05 00:00:14 2012 Stopping background process MMON Thu Jan 05 00:00:14 2012 Shutting down instance (immediate) License high water mark = 16 Thu Jan 05 00:00:14 2012

16 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

919: Stopping Job queue slave processes 920: Thu Jan 05 00:00:14 2012 921: Job queue slave processes stopped 922: Waiting for dispatcher 'D000' to shutdown 923: All dispatchers and shared servers shutdown 924: Thu Jan 05 00:00:16 2012 925: ALTER DATABASE CLOSE NORMAL 926: ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... 927: Thu Jan 05 00:00:16 2012 928: ALTER DATABASE DISMOUNT 929: Completed: ALTER DATABASE DISMOUNT 930: ARCH: Archival disabled due to shutdown: 1089 931: Shutting down archive processes 932: Archiving is disabled 933: Archive process shutdown avoided: 0 active 934: ARCH: Archival disabled due to shutdown: 1089 935: Shutting down archive processes 936: Archiving is disabled 937: Archive process shutdown avoided: 0 active 938: Thu Jan 05 00:00:28 2012 939: Adjusting the default value of parameter parallel_max_servers 940: from 320 to 135 due to the value of parameter processes (150) 941: Thu Jan 05 00:00:28 2012 942: Starting ORACLE instance (normal) 943: LICENSE_MAX_SESSION = 0 944: LICENSE_SESSIONS_WARNING = 0 945: Picked latch-free SCN scheme 2 946: Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST 947: Autotune of undo retention is turned on. 948: IMODE=BR 949: ILAT =18 950: LICENSE_MAX_USERS = 0 951: SYS auditing is disabled 952: ksdpec: called for event 13740 prior to event group initialization 953: Starting up ORACLE RDBMS Version: 10.2.0.1.0. 954: System parameters with non-default values: processes = 150 955: __shared_pool_size = 92274688 956: __large_pool_size = 4194304 957: __java_pool_size = 4194304 958: __streams_pool_size = 0 959: spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA 960: sga_target = 293601280 961: control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ 962: 963: db_block_size = 8192 964: __db_cache_size = 184549376 965: compatible = 10.2.0.1.0 966: db_file_multiblock_read_count= 16 967: db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area 968: db_recovery_file_dest_size= 2147483648 969: undo_management = AUTO 970: undo_tablespace = UNDOTBS1 971: remote_login_passwordfile= EXCLUSIVE 972: db_domain = 973: dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) 974: job_queue_processes = 10 975: audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP 976: background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP 977: user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP 978: core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP 979: db_name = MOJDMS01 980: open_cursors = 300 981: pga_aggregate_target = 96468992 982: PMON started with pid=2, OS id=6408 983: PSP0 started with pid=4, OS id=1340 984: MMAN started with pid=6, OS id=7156 985: DBW0 started with pid=8, OS id=6776 986: DBW1 started with pid=10, OS id=7160 987: LGWR started with pid=12, OS id=1752 988: CKPT started with pid=14, OS id=5796 989: SMON started with pid=16, OS id=6824 990: RECO started with pid=18, OS id=1032 991: CJQ0 started with pid=20, OS id=6312 992: MMON started with pid=22, OS id=3472 993: MMNL started with pid=24, OS id=6836 994: Thu Jan 05 00:00:29 2012 995: starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... 996: starting up 1 shared server(s) ... 997: Thu Jan 05 00:00:30 2012 998: ALTER DATABASE MOUNT 999: Thu Jan 05 00:00:34 2012 1000: Setting recovery target incarnation to 2 1001: Thu Jan 05 00:00:34 2012 1002: Successful mount of redo thread 1, with mount id 3025561822 1003: Thu Jan 05 00:00:34 2012 1004: Database mounted in Exclusive Mode 1005: Completed: ALTER DATABASE MOUNT 1006: Thu Jan 05 00:00:43 2012 1007: alter database open 1008: Thu Jan 05 00:00:43 2012 1009: Beginning crash recovery of 1 threads 1010: parallel recovery started with 15 processes 1011: Thu Jan 05 00:00:44 2012 1012: Started redo scan 1013: Thu Jan 05 00:00:45 2012 1014: Completed redo scan 1015: 2 redo blocks read, 0 data blocks need recovery 1016: Thu Jan 05 00:00:45 2012 1017: Started redo application at 1018: Thread 1: logseq 2, block 3 1019: Thu Jan 05 00:00:45 2012 1020: Recovery of Online Redo Log: Thread 1 Group 2 Seq 2 Reading mem 0 1021: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG 1022: Thu Jan 05 00:00:45 2012 1023: Completed redo application 1024: Thu Jan 05 00:00:46 2012 1025: Completed crash recovery at 1026: Thread 1: logseq 2, block 5, scn 34407882 1027: 0 data blocks read, 0 data blocks written, 2 redo blocks read 1028: Thu Jan 05 00:00:47 2012 1029: Thread 1 advanced to log sequence 3 1030: Thread 1 opened at log sequence 3 1031: Current log# 3 seq# 3 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO03.LOG 1032: Successful open of redo thread 1 1033: Thu Jan 05 00:00:47 2012 1034: MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set 1035: Thu Jan 05 00:00:47 2012 1036: SMON: enabling cache recovery 1037: Thu Jan 05 00:00:48 2012

17 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

1038: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_6232.trc: 1039: ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], [] 1040: 1041: Thu Jan 05 00:00:49 2012 1042: Doing block recovery for file 1 block 22 1043: Block recovery from logseq 3, block 3 to scn 34407889 1044: Thu Jan 05 00:00:49 2012 1045: Recovery of Online Redo Log: Thread 1 Group 3 Seq 3 Reading mem 0 1046: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO03.LOG 1047: Block recovery stopped at EOT rba 3.5.16 1048: Block recovery completed at rba 3.5.16, scn 0.34407888 1049: Doing block recovery for file 1 block 9 1050: Block recovery from logseq 3, block 3 to scn 34407887 1051: Thu Jan 05 00:00:49 2012 1052: Recovery of Online Redo Log: Thread 1 Group 3 Seq 3 Reading mem 0 1053: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO03.LOG 1054: Block recovery completed at rba 3.5.16, scn 0.34407888 1055: Thu Jan 05 00:00:49 2012 1056: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_6232.trc: 1057: ORA-00604: error occurred at recursive SQL level 1 1058: ORA-00607: Internal error occurred while making a change to a data block 1059: ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], [] 1060: 1061: Error 604 happened during db open, shutting down database 1062: USER: terminating instance due to error 604 1063: Thu Jan 05 00:00:50 2012 1064: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_lgwr_1752.trc: 1065: ORA-00604: error occurred at recursive SQL level 1066: 1067: Thu Jan 05 00:00:50 2012 1068: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_psp0_1340.trc: 1069: ORA-00604: error occurred at recursive SQL level 1070: 1071: Thu Jan 05 00:00:50 2012 1072: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_mman_7156.trc: 1073: ORA-00604: error occurred at recursive SQL level 1074: 1075: Thu Jan 05 00:00:50 2012 1076: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw0_6776.trc: 1077: ORA-00604: error occurred at recursive SQL level 1078: 1079: Thu Jan 05 00:00:50 2012 1080: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_ckpt_5796.trc: 1081: ORA-00604: error occurred at recursive SQL level 1082: 1083: Thu Jan 05 00:00:50 2012 1084: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw1_7160.trc: 1085: ORA-00604: error occurred at recursive SQL level 1086: 1087: Thu Jan 05 00:00:50 2012 1088: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_pmon_6408.trc: 1089: ORA-00604: error occurred at recursive SQL level 1090: 1091: Thu Jan 05 00:00:51 2012 1092: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_reco_1032.trc: 1093: ORA-00604: error occurred at recursive SQL level 1094: 1095: Thu Jan 05 00:00:51 2012 1096: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_smon_6824.trc: 1097: ORA-00604: error occurred at recursive SQL level 1098: 1099: Instance terminated by USER, pid = 6232 1100: ORA-1092 signalled during: alter database open... 1101: Thu Jan 05 22:49:37 2012 1102: Adjusting the default value of parameter parallel_max_servers 1103: from 320 to 135 due to the value of parameter processes (150) 1104: Thu Jan 05 22:49:37 2012 1105: Starting ORACLE instance (normal) 1106: LICENSE_MAX_SESSION = 0 1107: LICENSE_SESSIONS_WARNING = 0 1108: Picked latch-free SCN scheme 2 1109: Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST 1110: Autotune of undo retention is turned on. 1111: IMODE=BR 1112: ILAT =18 1113: LICENSE_MAX_USERS = 0 1114: SYS auditing is disabled 1115: ksdpec: called for event 13740 prior to event group initialization 1116: Starting up ORACLE RDBMS Version: 10.2.0.1.0. 1117: System parameters with non-default values: = 150 1118: processes 1119: __shared_pool_size = 92274688 = 4194304 1120: __large_pool_size = 4194304 1121: __java_pool_size = 0 1122: __streams_pool_size 1123: spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA = 293601280 1124: sga_target = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ 1125: control_files 1126: db_block_size = 8192 1127: __db_cache_size = 184549376 1128: compatible = 10.2.0.1.0 1129: db_file_multiblock_read_count= 16 1130: db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area 1131: db_recovery_file_dest_size= 2147483648 1132: undo_management = AUTO 1133: undo_tablespace = UNDOTBS1 1134: remote_login_passwordfile= EXCLUSIVE 1135: db_domain = 1136: dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) 1137: job_queue_processes = 10 1138: audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP 1139: background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP 1140: user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP 1141: core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP 1142: db_name = MOJDMS01 1143: open_cursors = 300 1144: pga_aggregate_target = 96468992 1145: PMON started with pid=2, OS id=3056 1146: PSP0 started with pid=4, OS id=2492 1147: MMAN started with pid=6, OS id=4772 1148: DBW0 started with pid=8, OS id=1852 1149: DBW1 started with pid=10, OS id=6380 1150: LGWR started with pid=12, OS id=6524 1151: CKPT started with pid=14, OS id=1212 1152: SMON started with pid=16, OS id=6984 1153: RECO started with pid=18, OS id=1944 1154: CJQ0 started with pid=20, OS id=6288 1155: MMON started with pid=22, OS id=6656 1156: MMNL started with pid=24, OS id=5968

18 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

1157: Thu Jan 05 22:49:37 2012 1158: starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... 1159: starting up 1 shared server(s) ... 1160: Thu Jan 05 22:49:38 2012 MOUNT 1161: ALTER DATABASE 1162: Thu Jan 05 22:49:42 2012 1163: Setting recovery target incarnation to 2 1164: Thu Jan 05 22:49:43 2012 1165: Successful mount of redo thread 1, with mount id 3025619650 1166: Thu Jan 05 22:49:43 2012 1167: Database mounted in Exclusive Mode MOUNT 1168: Completed: ALTER DATABASE 1169: Thu Jan 05 22:49:43 2012 1170: ALTER DATABASE OPEN 1171: ORA-1113 signalled during: ALTER DATABASE OPEN... 1172: Thu Jan 05 23:04:41 2012 1173: db_recovery_file_dest_size of 2048 MB is 0.00% used. This is a 1174: user-specified limit on the amount of space that will be used by this 1175: database for recovery-related files, and does not reflect the amount of 1176: space available in the underlying filesystem or ASM diskgroup. 1177: Fri Jan 06 00:10:27 2012 1178: Shutting down instance: further logons disabled 1179: Fri Jan 06 00:10:27 2012 1180: Stopping background process MMNL 1181: Fri Jan 06 00:10:28 2012 1182: Stopping background process MMON 1183: Fri Jan 06 00:10:28 2012 1184: Stopping background process CJQ0 1185: Fri Jan 06 00:10:29 2012 1186: Shutting down instance (immediate) 1187: License high water mark = 2 1188: Fri Jan 06 00:10:29 2012 1189: Stopping Job queue slave processes 1190: Fri Jan 06 00:10:29 2012 1191: Job queue slave processes stopped 1192: Waiting for dispatcher 'D000' to shutdown 1193: All dispatchers and shared servers shutdown 1194: Fri Jan 06 00:10:31 2012 1195: ALTER DATABASE CLOSE NORMAL 1196: ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... 1197: Fri Jan 06 00:10:31 2012 1198: ALTER DATABASE DISMOUNT 1199: Completed: ALTER DATABASE DISMOUNT 1200: ARCH: Archival disabled due to shutdown: 1089 1201: Shutting down archive processes 1202: Archiving is disabled 1203: Archive process shutdown avoided: 0 active 1204: ARCH: Archival disabled due to shutdown: 1089 1205: Shutting down archive processes 1206: Archiving is disabled 1207: Archive process shutdown avoided: 0 active 1208: Fri Jan 06 00:10:34 2012 1209: Adjusting the default value of parameter parallel_max_servers 1210: from 320 to 135 due to the value of parameter processes (150) 1211: Fri Jan 06 00:10:34 2012 1212: Starting ORACLE instance (normal) 1213: LICENSE_MAX_SESSION = 0 1214: LICENSE_SESSIONS_WARNING = 0 1215: Picked latch-free SCN scheme 2 1216: Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST 1217: Autotune of undo retention is turned on. 1218: IMODE=BR 1219: ILAT =18 1220: LICENSE_MAX_USERS = 0 1221: SYS auditing is disabled 1222: ksdpec: called for event 13740 prior to event group initialization 1223: Starting up ORACLE RDBMS Version: 10.2.0.1.0. 1224: System parameters with non-default values: = 150 1225: processes = 92274688 1226: __shared_pool_size = 4194304 1227: __large_pool_size = 4194304 1228: __java_pool_size = 0 1229: __streams_pool_size = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA 1230: spfile = 293601280 1231: sga_target = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\ 1232: control_files 1233: db_block_size = 8192 1234: __db_cache_size = 184549376 1235: compatible = 10.2.0.1.0 1236: db_file_multiblock_read_count= 16 1237: db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area 1238: db_recovery_file_dest_size= 2147483648 1239: undo_management = AUTO 1240: undo_tablespace = UNDOTBS1 1241: remote_login_passwordfile= EXCLUSIVE 1242: db_domain = 1243: dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) 1244: job_queue_processes = 10 1245: audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP 1246: background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP 1247: user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP 1248: core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP 1249: db_name = MOJDMS01 1250: open_cursors = 300 1251: pga_aggregate_target = 96468992 1252: PMON started with pid=2, OS id=5468 1253: PSP0 started with pid=4, OS id=7120 1254: MMAN started with pid=6, OS id=6264 1255: DBW0 started with pid=8, OS id=6632 1256: DBW1 started with pid=10, OS id=6744 1257: LGWR started with pid=12, OS id=5796 1258: CKPT started with pid=14, OS id=7024 1259: SMON started with pid=16, OS id=6616 1260: RECO started with pid=18, OS id=6628 1261: CJQ0 started with pid=20, OS id=5444 1262: MMON started with pid=22, OS id=5720 1263: MMNL started with pid=24, OS id=3452 1264: Fri Jan 06 00:10:35 2012 1265: starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... 1266: starting up 1 shared server(s) ... 1267: Fri Jan 06 00:10:35 2012 1268: ALTER DATABASE MOUNT 1269: Fri Jan 06 00:10:40 2012 1270: Setting recovery target incarnation to 2 1271: Fri Jan 06 00:10:40 2012 1272: Successful mount of redo thread 1, with mount id 3025658299 1273: Fri Jan 06 00:10:40 2012 1274: Database mounted in Exclusive Mode 1275: Completed: ALTER DATABASE MOUNT

19 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

1276: Fri Jan 06 00:10:41 2012 1277: alter database recover 1278: Media Recovery Start 1279: parallel recovery started with 15 processes 1280: Fri Jan 06 00:10:42 2012 1281: Recovery of Online Redo Log: Thread 1 Group 3 Seq 3 Reading mem 0 1282: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO03.LOG 1283: Completed: alter database recover 1284: Fri Jan 06 00:10:50 2012 1285: alter database open 1286: Fri Jan 06 00:10:50 2012 1287: Beginning crash recovery of 1 threads 1288: parallel recovery started with 15 processes 1289: Fri Jan 06 00:10:51 2012 1290: Started redo scan 1291: Fri Jan 06 00:10:51 2012 1292: Completed redo scan 1293: 2 redo blocks read, 0 data blocks need recovery 1294: Fri Jan 06 00:10:51 2012 1295: Started redo application at 1296: Thread 1: logseq 3, block 3, scn 34407886 1297: Fri Jan 06 00:10:51 2012 1298: Recovery of Online Redo Log: Thread 1 Group 3 Seq 3 Reading mem 0 1299: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO03.LOG 1300: Fri Jan 06 00:10:51 2012 1301: Completed redo application 1302: Fri Jan 06 00:10:51 2012 1303: Completed crash recovery at 1304: Thread 1: logseq 3, block 5, scn 34427888 1305: 0 data blocks read, 0 data blocks written, 2 redo blocks read 1306: Fri Jan 06 00:10:51 2012 1307: Thread 1 advanced to log sequence 4 1308: Thread 1 opened at log sequence 4 1309: Current log# 1 seq# 4 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG 1310: Successful open of redo thread 1 1311: Fri Jan 06 00:10:51 2012 1312: MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set 1313: Fri Jan 06 00:10:51 2012 1314: SMON: enabling cache recovery 1315: Fri Jan 06 00:10:52 2012 1316: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_1184.trc: 1317: ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], [] 1318: 1319: Fri Jan 06 00:10:53 2012 1320: Doing block recovery for file 1 block 22 1321: Block recovery from logseq 4, block 3 to scn 34427895 1322: Fri Jan 06 00:10:53 2012 1323: Recovery of Online Redo Log: Thread 1 Group 1 Seq 4 Reading mem 0 1324: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG 1325: Block recovery stopped at EOT rba 4.5.16 1326: Block recovery completed at rba 4.5.16, scn 0.34427894 1327: Doing block recovery for file 1 block 9 1328: Block recovery from logseq 4, block 3 to scn 34427893 1329: Fri Jan 06 00:10:53 2012 1330: Recovery of Online Redo Log: Thread 1 Group 1 Seq 4 Reading mem 0 1331: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG 1332: Block recovery completed at rba 4.5.16, scn 0.34427894 1333: Fri Jan 06 00:10:53 2012 1334: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_1184.trc: 1335: ORA-00604: error occurred at recursive SQL level 1 1336: ORA-00607: Internal error occurred while making a change to a data block 1337: ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], [] 1338: 1339: Error 604 happened during db open, shutting down database 1340: USER: terminating instance due to error 604 1341: Fri Jan 06 00:10:54 2012 1342: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_pmon_5468.trc: 1343: ORA-00604: error occurred at recursive SQL level 1344: 1345: Fri Jan 06 00:10:54 2012 1346: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_reco_6628.trc: 1347: ORA-00604: error occurred at recursive SQL level 1348: 1349: Fri Jan 06 00:10:54 2012 1350: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_smon_6616.trc: 1351: ORA-00604: error occurred at recursive SQL level 1352: 1353: Fri Jan 06 00:10:55 2012 1354: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_ckpt_7024.trc: 1355: ORA-00604: error occurred at recursive SQL level 1356: 1357: Fri Jan 06 00:10:55 2012 1358: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_lgwr_5796.trc: 1359: ORA-00604: error occurred at recursive SQL level 1360: 1361: Fri Jan 06 00:10:55 2012 1362: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw1_6744.trc: 1363: ORA-00604: error occurred at recursive SQL level 1364: 1365: Fri Jan 06 00:10:55 2012 1366: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw0_6632.trc: 1367: ORA-00604: error occurred at recursive SQL level 1368: 1369: Fri Jan 06 00:10:55 2012 1370: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_mman_6264.trc: 1371: ORA-00604: error occurred at recursive SQL level 1372: 1373: Fri Jan 06 00:10:55 2012 1374: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_psp0_7120.trc: 1375: ORA-00604: error occurred at recursive SQL level 1376: 1377: Instance terminated by USER, pid = 1184 1378: ORA-1092 signalled during: alter database open...

Author Comment The previous lines from alert log file is the last 1000 lines from alert log file Expert Comment everything can't be done from SQL...!!!

Author: egovernment Date: 01/05/2012 - 10:18PM PST

Author: wasimibm Date: 01/05/2012 - 10:24PM PST

:) .. It would have been possible in unix, by i dont think there is any command in windows which will do this task..

20 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

As far as i think, in your database some of the data files might have got corrupted. which is causing the database crash while starting up..!! if you had gone through the links from my earlier comments the ORA-01041 errors says that a severe problem occured while starting up..!! Though you can't find solutions based on assumptions(that a severe problem occured while starting up database ).. you need to investigate the root cause and find out what has caused the actual error... to check what has gone wrong, we would definitely need to have a look at your alert_log. I'm not sure whether this is a standard approach, you can try one thing.... take the backup of existing alert_log(rename the existing alert log) create a new alert log with the same name and stop and start the database.. i think this should work, you will get fresh errors in alert log and the alert log will be very small,may be in just kbs, you can upload it here. Author Comment Author: egovernment Date: 01/05/2012 - 10:32PM PST

WasimIbm I do that take the backup of existing alert_log(rename the existing alert log) create a new alert log with the same name and stop and start the database.. i think this should work, you will get fresh errors in alert log and the alert log will be very small,may be in just kbs, you can upload it here.

1: Fri Jan 06 10:33:33 2012 2: Adjusting the default value of parameter parallel_max_servers 3: from 320 to 135 due to the value of parameter processes (150) 4: Fri Jan 06 10:33:33 2012 5: Starting ORACLE instance (normal) 6: LICENSE_MAX_SESSION = 0 7: LICENSE_SESSIONS_WARNING = 0 8: Picked latch-free SCN scheme 2 9: Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST 10: Autotune of undo retention is turned on. 11: IMODE=BR 12: ILAT =18 13: LICENSE_MAX_USERS = 0 14: SYS auditing is disabled 15: ksdpec: called for event 13740 prior to event group initialization 16: Starting up ORACLE RDBMS Version: 10.2.0.1.0. 17: System parameters with non-default values: = 150 18: processes = 92274688 19: __shared_pool_size = 4194304 20: __large_pool_size = 4194304 21: __java_pool_size = 0 22: __streams_pool_size = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA 23: spfile = 293601280 24: sga_target = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\10 25: control_files 26: db_block_size = 8192 27: __db_cache_size = 184549376 28: compatible = 10.2.0.1.0 29: db_file_multiblock_read_count= 16 30: db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area 31: db_recovery_file_dest_size= 2147483648 32: undo_management = AUTO 33: undo_tablespace = UNDOTBS1 34: remote_login_passwordfile= EXCLUSIVE 35: db_domain = 36: dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) 37: job_queue_processes = 10 38: audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP 39: background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP 40: user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP 41: core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP 42: db_name = MOJDMS01 43: open_cursors = 300 44: pga_aggregate_target = 96468992 45: PMON started with pid=2, OS id=5804 46: PSP0 started with pid=4, OS id=6908 47: MMAN started with pid=6, OS id=6300 48: DBW0 started with pid=8, OS id=7132 49: DBW1 started with pid=10, OS id=6388 50: LGWR started with pid=12, OS id=1356 51: CKPT started with pid=14, OS id=1848 52: SMON started with pid=16, OS id=1244 53: RECO started with pid=18, OS id=5752 54: CJQ0 started with pid=20, OS id=5440 55: MMON started with pid=22, OS id=1972 56: MMNL started with pid=24, OS id=6628 57: Fri Jan 06 10:33:34 2012 58: starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... 59: starting up 1 shared server(s) ... 60: Fri Jan 06 10:33:35 2012 61: ALTER DATABASE MOUNT 62: Fri Jan 06 10:33:39 2012 63: Setting recovery target incarnation to 2 64: Fri Jan 06 10:33:40 2012 65: Successful mount of redo thread 1, with mount id 3025700031 66: Fri Jan 06 10:33:40 2012 67: Database mounted in Exclusive Mode 68: Completed: ALTER DATABASE MOUNT 69: Fri Jan 06 10:33:40 2012 70: ALTER DATABASE OPEN 71: ORA-1113 signalled during: ALTER DATABASE OPEN...

Expert Comment here you go...

Author: wasimibm Date: 01/05/2012 - 11:10PM PST

The ORa-1113 error means that your Backup implementation ("Retrospect") does an ALTER TABLESPACE BEGIN BACKUP and END BACKUP for each tablespace. retry again those steps, shutdown immediate;

21 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

startup mount; ALTER DATABASE END BACKUP; alter database open;

see how it goes, paste the results of activity and also the alert log file content.. hope this helps..!!! Expert Comment hope you are executing the activity. i wish no new errors come up now :) ... pls post some good news... its understood that even if its bad news, you'll post it though :)) Author Comment The result is
1: SQL> shutdown immediate; 2: ORA-01109: database not open 3: 4: 5: Database dismounted. 6: ORACLE instance shut down. 7: SQL> startup mount; 8: ORACLE instance started. 9: 10: Total System Global Area 293601280 bytes 11: Fixed Size 1330520 bytes 12: Variable Size 103461544 bytes 13: Database Buffers 184549376 bytes 14: Redo Buffers 4259840 bytes 15: Database mounted. 16: SQL> ALTER DATABASE END BACKUP; 17: ALTER DATABASE END BACKUP 18: * 19: ERROR at line 1: 20: ORA-01142: cannot end online backup - none of the files are in backup 21: 22: 23: SQL> alter database open; 24: alter database open 25: * 26: ERROR at line 1: 27: ORA-01113: file 1 needs media recovery 28: ORA-01110: data file 1: 29: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\SYSTEM01.DBF' 30: 31: 32: SQL>

Author: wasimibm Date: 01/05/2012 - 11:23PM PST

Author: egovernment Date: 01/06/2012 - 12:15AM PST

Author Comment Any solution ? Expert Comment one last try,.. shutdown immediate; startup mount; Alter database recover; alter database end backup; alter database open; Expert Comment also post the alert log of this activity, Author Comment The result of command
1: C:\Users\Administrator>sqlplus / as sysdba 2: 3: SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jan 6 19:09:08 2012 4: 5: Copyright (c) 1982, 2005, Oracle. All rights reserved. 6: 7: Connected to an idle instance. 8: 9: SQL> shutdown immediate; 10: ORA-01034: ORACLE not available 11: ORA-27101: shared memory realm does not exist 12: SQL> startup mount; 13: ORACLE instance started. 14: 15: Total System Global Area 293601280 bytes 16: Fixed Size 1330520 bytes 103461544 bytes 17: Variable Size 18: Database Buffers 184549376 bytes 19: Redo Buffers 4259840 bytes 20: Database mounted.

Author: egovernment Date: 01/06/2012 - 12:15AM PST

Author: wasimibm Date: 01/06/2012 - 01:22AM PST

Author: wasimibm Date: 01/06/2012 - 01:23AM PST

Author: egovernment Date: 01/06/2012 - 07:13AM PST

22 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

21: SQL> Alter database recover; 22: Alter database recover 23: * 24: ERROR at line 1: 25: ORA-03113: end-of-file on communication channel 26: 27: 28: SQL> alter database end backup; 29: ERROR: 30: ORA-03114: not connected to ORACLE 31: 32: 33: SQL> alter database open; 34: ERROR: 35: ORA-03114: not connected to ORACLE 36: 37: 38: SQL>

The alert log file as


1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94:

Fri Jan 06 10:33:33 2012 Adjusting the default value of parameter parallel_max_servers from 320 to 135 due to the value of parameter processes (150) Fri Jan 06 10:33:33 2012 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Picked latch-free SCN scheme 2 Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST Autotune of undo retention is turned on. IMODE=BR ILAT =18 LICENSE_MAX_USERS = 0 SYS auditing is disabled ksdpec: called for event 13740 prior to event group initialization Starting up ORACLE RDBMS Version: 10.2.0.1.0. System parameters with non-default values: processes = 150 __shared_pool_size = 92274688 __large_pool_size = 4194304 __java_pool_size = 4194304 __streams_pool_size = 0 spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA sga_target = 293601280 control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\1 db_block_size = 8192 __db_cache_size = 184549376 compatible = 10.2.0.1.0 db_file_multiblock_read_count= 16 db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area db_recovery_file_dest_size= 2147483648 undo_management = AUTO undo_tablespace = UNDOTBS1 remote_login_passwordfile= EXCLUSIVE db_domain = dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) job_queue_processes = 10 audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP db_name = MOJDMS01 open_cursors = 300 pga_aggregate_target = 96468992 PMON started with pid=2, OS id=5804 PSP0 started with pid=4, OS id=6908 MMAN started with pid=6, OS id=6300 DBW0 started with pid=8, OS id=7132 DBW1 started with pid=10, OS id=6388 LGWR started with pid=12, OS id=1356 CKPT started with pid=14, OS id=1848 SMON started with pid=16, OS id=1244 RECO started with pid=18, OS id=5752 CJQ0 started with pid=20, OS id=5440 MMON started with pid=22, OS id=1972 MMNL started with pid=24, OS id=6628 Fri Jan 06 10:33:34 2012 starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... starting up 1 shared server(s) ... Fri Jan 06 10:33:35 2012 ALTER DATABASE MOUNT Fri Jan 06 10:33:39 2012 Setting recovery target incarnation to 2 Fri Jan 06 10:33:40 2012 Successful mount of redo thread 1, with mount id 3025700031 Fri Jan 06 10:33:40 2012 Database mounted in Exclusive Mode Completed: ALTER DATABASE MOUNT Fri Jan 06 10:33:40 2012 ALTER DATABASE OPEN ORA-1113 signalled during: ALTER DATABASE OPEN... Fri Jan 06 10:48:37 2012 db_recovery_file_dest_size of 2048 MB is 0.00% 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. Fri Jan 06 12:14:57 2012 Shutting down instance: further logons disabled Fri Jan 06 12:14:57 2012 Stopping background process MMNL Fri Jan 06 12:14:58 2012 Stopping background process MMON Fri Jan 06 12:14:58 2012 Stopping background process CJQ0 Fri Jan 06 12:14:59 2012 Shutting down instance (immediate) License high water mark = 2 Fri Jan 06 12:14:59 2012 Stopping Job queue slave processes Fri Jan 06 12:14:59 2012 Job queue slave processes stopped Waiting for dispatcher 'D000' to shutdown All dispatchers and shared servers shutdown Fri Jan 06 12:15:01 2012

23 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

95: ALTER DATABASE CLOSE NORMAL 96: ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL... 97: Fri Jan 06 12:15:01 2012 98: ALTER DATABASE DISMOUNT 99: Completed: ALTER DATABASE DISMOUNT 100: ARCH: Archival disabled due to shutdown: 1089 101: Shutting down archive processes 102: Archiving is disabled 103: Archive process shutdown avoided: 0 active 104: ARCH: Archival disabled due to shutdown: 1089 105: Shutting down archive processes 106: Archiving is disabled 107: Archive process shutdown avoided: 0 active 108: Fri Jan 06 12:15:24 2012 109: Adjusting the default value of parameter parallel_max_servers 110: from 320 to 135 due to the value of parameter processes (150) 111: Fri Jan 06 12:15:24 2012 112: Starting ORACLE instance (normal) 113: LICENSE_MAX_SESSION = 0 114: LICENSE_SESSIONS_WARNING = 0 115: Picked latch-free SCN scheme 2 116: Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST 117: Autotune of undo retention is turned on. 118: IMODE=BR 119: ILAT =18 120: LICENSE_MAX_USERS = 0 121: SYS auditing is disabled 122: ksdpec: called for event 13740 prior to event group initialization 123: Starting up ORACLE RDBMS Version: 10.2.0.1.0. 124: System parameters with non-default values: = 150 125: processes = 92274688 126: __shared_pool_size = 4194304 127: __large_pool_size = 4194304 128: __java_pool_size = 0 129: __streams_pool_size = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA 130: spfile = 293601280 131: sga_target = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\1 132: control_files 133: db_block_size = 8192 134: __db_cache_size = 184549376 135: compatible = 10.2.0.1.0 136: db_file_multiblock_read_count= 16 137: db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area 138: db_recovery_file_dest_size= 2147483648 139: undo_management = AUTO 140: undo_tablespace = UNDOTBS1 141: remote_login_passwordfile= EXCLUSIVE 142: db_domain = 143: dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) 144: job_queue_processes = 10 145: audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP 146: background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP 147: user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP 148: core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP 149: db_name = MOJDMS01 150: open_cursors = 300 151: pga_aggregate_target = 96468992 152: PMON started with pid=2, OS id=6740 153: PSP0 started with pid=4, OS id=1976 154: MMAN started with pid=6, OS id=6768 155: DBW0 started with pid=8, OS id=6248 156: DBW1 started with pid=10, OS id=5404 157: LGWR started with pid=12, OS id=1396 158: CKPT started with pid=14, OS id=7144 159: SMON started with pid=16, OS id=5496 160: RECO started with pid=18, OS id=6224 161: CJQ0 started with pid=20, OS id=6884 162: MMON started with pid=22, OS id=568 163: MMNL started with pid=24, OS id=6532 164: Fri Jan 06 12:15:25 2012 165: starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... 166: starting up 1 shared server(s) ... 167: Fri Jan 06 12:15:26 2012 168: ALTER DATABASE MOUNT 169: Fri Jan 06 12:15:30 2012 170: Setting recovery target incarnation to 2 171: Fri Jan 06 12:15:30 2012 172: Successful mount of redo thread 1, with mount id 3025696414 173: Fri Jan 06 12:15:30 2012 174: Database mounted in Exclusive Mode 175: Completed: ALTER DATABASE MOUNT 176: Fri Jan 06 12:15:51 2012 177: ALTER DATABASE END BACKUP 178: Fri Jan 06 12:15:51 2012 179: ORA-1142 signalled during: ALTER DATABASE END BACKUP... 180: Fri Jan 06 12:16:25 2012 181: alter database open 182: Fri Jan 06 12:16:25 2012 183: ORA-1113 signalled during: alter database open... 184: Fri Jan 06 12:22:34 2012 185: Shutting down instance (abort) 186: License high water mark = 2 187: Instance terminated by USER, pid = 5584 188: Fri Jan 06 12:22:56 2012 189: Adjusting the default value of parameter parallel_max_servers 190: from 320 to 135 due to the value of parameter processes (150) 191: Fri Jan 06 12:22:56 2012 192: Starting ORACLE instance (normal) 193: LICENSE_MAX_SESSION = 0 194: LICENSE_SESSIONS_WARNING = 0 195: Picked latch-free SCN scheme 2 196: Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST 197: Autotune of undo retention is turned on. 198: IMODE=BR 199: ILAT =18 200: LICENSE_MAX_USERS = 0 201: SYS auditing is disabled 202: ksdpec: called for event 13740 prior to event group initialization 203: Starting up ORACLE RDBMS Version: 10.2.0.1.0. 204: System parameters with non-default values: 205: processes = 150 206: __shared_pool_size = 92274688 207: __large_pool_size = 4194304 208: __java_pool_size = 4194304 209: __streams_pool_size = 0 210: spfile = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA 211: sga_target = 293601280 212: control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\1 213: db_block_size = 8192

24 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

= 184549376 214: __db_cache_size = 10.2.0.1.0 215: compatible 216: db_file_multiblock_read_count= 16 = E:\oracle\product\10.2.0\db_1/flash_recovery_area 217: db_recovery_file_dest 218: db_recovery_file_dest_size= 2147483648 = AUTO 219: undo_management = UNDOTBS1 220: undo_tablespace 221: remote_login_passwordfile= EXCLUSIVE = 222: db_domain = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) 223: dispatchers = 10 224: job_queue_processes = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP 225: audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP 226: background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP 227: user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP 228: core_dump_dest = MOJDMS01 229: db_name = 300 230: open_cursors = 96468992 231: pga_aggregate_target 232: PMON started with pid=2, OS id=6792 233: PSP0 started with pid=4, OS id=4760 234: MMAN started with pid=6, OS id=6288 235: DBW0 started with pid=8, OS id=6728 236: DBW1 started with pid=10, OS id=1572 237: LGWR started with pid=12, OS id=6724 238: CKPT started with pid=14, OS id=6996 239: SMON started with pid=16, OS id=868 240: RECO started with pid=18, OS id=804 241: CJQ0 started with pid=20, OS id=508 242: MMON started with pid=22, OS id=2644 243: MMNL started with pid=24, OS id=6268 244: Fri Jan 06 12:22:57 2012 245: starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... 246: starting up 1 shared server(s) ... 247: Fri Jan 06 12:22:58 2012 MOUNT 248: ALTER DATABASE 249: Fri Jan 06 12:23:02 2012 250: Setting recovery target incarnation to 2 251: Fri Jan 06 12:23:02 2012 252: Successful mount of redo thread 1, with mount id 3025678178 253: Fri Jan 06 12:23:02 2012 254: Database mounted in Exclusive Mode MOUNT 255: Completed: ALTER DATABASE 256: Fri Jan 06 12:23:17 2012 257: alter database open resetlogs 258: Fri Jan 06 12:23:17 2012 259: ORA-1139 signalled during: alter database open resetlogs... 260: Fri Jan 06 12:32:59 2012 261: ALTER DATABASE RECOVER database 262: Fri Jan 06 12:32:59 2012 263: Media Recovery Start 264: parallel recovery started with 15 processes 265: Fri Jan 06 12:33:01 2012 266: Recovery of Online Redo Log: Thread 1 Group 1 Seq 4 Reading mem 0 267: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG 268: Completed: ALTER DATABASE RECOVER database 269: Fri Jan 06 12:33:55 2012 270: alter database open 271: 272: Fri Jan 06 12:33:55 2012 273: Beginning crash recovery of 1 threads 274: parallel recovery started with 15 processes 275: Fri Jan 06 12:33:56 2012 276: Started redo scan 277: Fri Jan 06 12:33:57 2012 278: Completed redo scan 279: 2 redo blocks read, 0 data blocks need recovery 280: Fri Jan 06 12:33:58 2012 281: Started redo application at 282: Thread 1: logseq 4, block 3 283: Fri Jan 06 12:33:58 2012 284: Recovery of Online Redo Log: Thread 1 Group 1 Seq 4 Reading mem 0 285: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO01.LOG 286: Fri Jan 06 12:33:58 2012 287: Completed redo application 288: Fri Jan 06 12:33:59 2012 289: Completed crash recovery at 290: Thread 1: logseq 4, block 5, scn 34447894 291: 0 data blocks read, 0 data blocks written, 2 redo blocks read 292: Fri Jan 06 12:34:01 2012 293: Thread 1 advanced to log sequence 5 294: Thread 1 opened at log sequence 5 295: Current log# 2 seq# 5 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG 296: Successful open of redo thread 1 297: Fri Jan 06 12:34:01 2012 298: MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set 299: Fri Jan 06 12:34:01 2012 300: SMON: enabling cache recovery 301: Fri Jan 06 12:34:03 2012 302: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_2428.trc: 303: ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], [] 304: 305: Fri Jan 06 12:34:04 2012 306: Doing block recovery for file 1 block 22 307: Block recovery from logseq 5, block 3 to scn 34447901 308: Fri Jan 06 12:34:04 2012 309: Recovery of Online Redo Log: Thread 1 Group 2 Seq 5 Reading mem 0 310: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG 311: Block recovery stopped at EOT rba 5.5.16 312: Block recovery completed at rba 5.5.16, scn 0.34447900 313: Doing block recovery for file 1 block 9 314: Block recovery from logseq 5, block 3 to scn 34447899 315: Fri Jan 06 12:34:04 2012 316: Recovery of Online Redo Log: Thread 1 Group 2 Seq 5 Reading mem 0 317: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG 318: Block recovery completed at rba 5.5.16, scn 0.34447900 319: Fri Jan 06 12:34:04 2012 320: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_2428.trc: 321: ORA-00604: error occurred at recursive SQL level 1 322: ORA-00607: Internal error occurred while making a change to a data block 323: ORA-00600: internal error code, arguments: [4193], [49], [55], [], [], [], [], [] 324: 325: Error 604 happened during db open, shutting down database 326: USER: terminating instance due to error 604 327: Fri Jan 06 12:34:05 2012 328: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_lgwr_6724.trc: 329: ORA-00604: error occurred at recursive SQL level 330: 331: Fri Jan 06 12:34:06 2012 332: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_mman_6288.trc:

25 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

333: ORA-00604: error occurred at recursive SQL level 334: 335: Fri Jan 06 12:34:06 2012 336: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_pmon_6792.trc: 337: ORA-00604: error occurred at recursive SQL level 338: 339: Fri Jan 06 12:34:06 2012 340: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_psp0_4760.trc: 341: ORA-00604: error occurred at recursive SQL level 342: 343: Fri Jan 06 12:34:07 2012 344: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw1_1572.trc: 345: ORA-00604: error occurred at recursive SQL level 346: 347: Fri Jan 06 12:34:07 2012 348: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_ckpt_6996.trc: 349: ORA-00604: error occurred at recursive SQL level 350: 351: Fri Jan 06 12:34:07 2012 352: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw0_6728.trc: 353: ORA-00604: error occurred at recursive SQL level 354: 355: Fri Jan 06 12:34:07 2012 356: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_reco_804.trc: 357: ORA-00604: error occurred at recursive SQL level 358: 359: Fri Jan 06 12:34:07 2012 360: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_smon_868.trc: 361: ORA-00604: error occurred at recursive SQL level 362: 363: Instance terminated by USER, pid = 2428 364: ORA-1092 signalled during: alter database open 365: ... 366: Fri Jan 06 19:10:33 2012 367: Adjusting the default value of parameter parallel_max_servers 368: from 320 to 135 due to the value of parameter processes (150) 369: Fri Jan 06 19:10:33 2012 370: Starting ORACLE instance (normal) 371: LICENSE_MAX_SESSION = 0 372: LICENSE_SESSIONS_WARNING = 0 373: Picked latch-free SCN scheme 2 374: Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST 375: Autotune of undo retention is turned on. 376: IMODE=BR 377: ILAT =18 378: LICENSE_MAX_USERS = 0 379: SYS auditing is disabled 380: ksdpec: called for event 13740 prior to event group initialization 381: Starting up ORACLE RDBMS Version: 10.2.0.1.0. 382: System parameters with non-default values: = 150 383: processes = 92274688 384: __shared_pool_size = 4194304 385: __large_pool_size = 4194304 386: __java_pool_size = 0 387: __streams_pool_size = E:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMOJDMS01.ORA 388: spfile = 293601280 389: sga_target = E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\CONTROL02.CTL, E:\ORACLE\PRODUCT\1 390: control_files 391: db_block_size = 8192 392: __db_cache_size = 184549376 393: compatible = 10.2.0.1.0 394: db_file_multiblock_read_count= 16 395: db_recovery_file_dest = E:\oracle\product\10.2.0\db_1/flash_recovery_area 396: db_recovery_file_dest_size= 2147483648 397: undo_management = AUTO 398: undo_tablespace = UNDOTBS1 399: remote_login_passwordfile= EXCLUSIVE 400: db_domain = 401: dispatchers = (PROTOCOL=TCP) (SERVICE=MOJDMS01XDB) 402: job_queue_processes = 10 403: audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\ADUMP 404: background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\BDUMP 405: user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\UDUMP 406: core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\MOJDMS01\CDUMP 407: db_name = MOJDMS01 408: open_cursors = 300 409: pga_aggregate_target = 96468992 410: PMON started with pid=2, OS id=3488 411: PSP0 started with pid=4, OS id=5956 412: MMAN started with pid=6, OS id=188 413: DBW0 started with pid=8, OS id=5740 414: DBW1 started with pid=10, OS id=6508 415: LGWR started with pid=12, OS id=2436 416: CKPT started with pid=14, OS id=2528 417: SMON started with pid=16, OS id=1660 418: RECO started with pid=18, OS id=5476 419: CJQ0 started with pid=20, OS id=6372 420: MMON started with pid=22, OS id=1140 421: MMNL started with pid=24, OS id=1656 422: Fri Jan 06 19:10:34 2012 423: starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'... 424: starting up 1 shared server(s) ... 425: Fri Jan 06 19:10:35 2012 426: ALTER DATABASE MOUNT 427: Fri Jan 06 19:10:39 2012 428: Setting recovery target incarnation to 2 429: Fri Jan 06 19:10:39 2012 430: Successful mount of redo thread 1, with mount id 3025685739 431: Fri Jan 06 19:10:39 2012 432: Database mounted in Exclusive Mode 433: Completed: ALTER DATABASE MOUNT 434: Fri Jan 06 19:10:55 2012 435: Alter database recover 436: Fri Jan 06 19:10:55 2012 437: Media Recovery Start 438: parallel recovery started with 15 processes 439: Fri Jan 06 19:10:57 2012 440: Recovery of Online Redo Log: Thread 1 Group 2 Seq 5 Reading mem 0 441: Mem# 0 errs 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\MOJDMS01\REDO02.LOG 442: Fri Jan 06 19:11:03 2012 443: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_6808.trc: 444: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kews_sqlst_flush_level+23] [PC:0x2ED8543] [] [] [] 445: 446: Fri Jan 06 19:11:05 2012 447: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\udump\mojdms01_ora_6808.trc: 448: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kews_sqlst_flush_level+23] [PC:0x2ED8543] [] [] [] 449: 450: Fri Jan 06 19:11:31 2012 451: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p001_2856.trc:

26 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

452: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 453: ORA-10389: parallel query server interrupt (cleanup) 454: 455: Fri Jan 06 19:11:31 2012 456: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p003_5552.trc: 457: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 458: ORA-10389: parallel query server interrupt (cleanup) 459: 460: Fri Jan 06 19:11:31 2012 461: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p000_6940.trc: 462: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 463: ORA-10389: parallel query server interrupt (cleanup) 464: 465: Fri Jan 06 19:11:32 2012 466: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p005_3480.trc: 467: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 468: ORA-10389: parallel query server interrupt (cleanup) 469: 470: Fri Jan 06 19:11:32 2012 471: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p011_5712.trc: 472: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 473: ORA-10389: parallel query server interrupt (cleanup) 474: 475: Fri Jan 06 19:11:32 2012 476: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p004_7160.trc: 477: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 478: ORA-10389: parallel query server interrupt (cleanup) 479: 480: Fri Jan 06 19:11:32 2012 481: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p002_1504.trc: 482: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 483: ORA-10389: parallel query server interrupt (cleanup) 484: 485: Fri Jan 06 19:11:32 2012 486: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p006_1932.trc: 487: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 488: ORA-10389: parallel query server interrupt (cleanup) 489: 490: Fri Jan 06 19:11:32 2012 491: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p009_6956.trc: 492: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 493: ORA-10389: parallel query server interrupt (cleanup) 494: 495: Fri Jan 06 19:11:32 2012 496: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p007_6876.trc: 497: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 498: ORA-10389: parallel query server interrupt (cleanup) 499: 500: Fri Jan 06 19:11:32 2012 501: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p010_5860.trc: 502: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 503: ORA-10389: parallel query server interrupt (cleanup) 504: 505: Fri Jan 06 19:11:32 2012 506: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p008_5980.trc: 507: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 508: ORA-10389: parallel query server interrupt (cleanup) 509: 510: Fri Jan 06 19:11:32 2012 511: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p013_5520.trc: 512: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 513: ORA-10389: parallel query server interrupt (cleanup) 514: 515: Fri Jan 06 19:11:32 2012 516: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p014_5472.trc: 517: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 518: ORA-10389: parallel query server interrupt (cleanup) 519: 520: Fri Jan 06 19:11:32 2012 521: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_p012_6220.trc: 522: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__kxfprdp+3609] [PC:0x2E36F7D] [] 523: ORA-10389: parallel query server interrupt (cleanup) 524: 525: Fri Jan 06 19:11:34 2012 526: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_pmon_3488.trc: 527: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__ksqxferieq+7791] [PC:0x2D45C5B] 528: 529: Fri Jan 06 19:11:48 2012 530: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_pmon_3488.trc: 531: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__ksqxferieq+7791] [PC:0x2D45C5B] 532: 533: Fri Jan 06 19:11:48 2012 534: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_pmon_3488.trc: 535: ORA-07445: exception encountered: core dump [IN_PAGE_ERROR] [__VInfreq__ksqxferieq+7791] [PC:0x2D45C5B] 536: 537: Fri Jan 06 19:12:37 2012 538: RECO: terminating instance due to error 472 539: Fri Jan 06 19:12:38 2012 540: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw1_6508.trc: 541: ORA-00472: PMON process terminated with error 542: 543: Fri Jan 06 19:12:38 2012 544: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_ckpt_2528.trc: 545: ORA-00472: PMON process terminated with error 546: 547: Fri Jan 06 19:12:38 2012 548: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_psp0_5956.trc: 549: ORA-00472: PMON process terminated with error 550: 551: Fri Jan 06 19:12:38 2012 552: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_mman_188.trc: 553: ORA-00472: PMON process terminated with error 554: 555: Fri Jan 06 19:12:38 2012 556: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_lgwr_2436.trc: 557: ORA-00472: PMON process terminated with error 558: 559: Fri Jan 06 19:12:38 2012 560: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_dbw0_5740.trc: 561: ORA-00472: PMON process terminated with error 562: 563: Fri Jan 06 19:12:38 2012 564: Errors in file e:\oracle\product\10.2.0\db_1\admin\mojdms01\bdump\mojdms01_smon_1660.trc: 565: ORA-00472: PMON process terminated with error 566: 567: Instance terminated by RECO, pid = 5476

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] []

[] [] []

[] [] []

[] [] []

Author Comment

27 28

01/06/2012 07:58

Oracle Database: Urgent: ORACLE initialization or shutdown in progress

http://www.experts-exchange.com/Database/Oracle/viewQuestionPrinter...

Author: egovernment Date: 01/06/2012 - 07:15AM PST Any solution ?


Copyright 1996 - 2012 Experts Exchange, LLC.

28 28

01/06/2012 07:58

You might also like