If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > Ora-01089

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-14-03, 10:37
reemagupta reemagupta is offline
Registered User
 
Join Date: Oct 2003
Posts: 71
Ora-01089

I have shutdown (Immediate) the oracle instance

It gived me error:
01089: Immediate shutdown in progress ---no operations are permitted

Oracle ver 8.1.7


WHat could be the reason???

Thanks
Reema
Reply With Quote
  #2 (permalink)  
Old 10-14-03, 10:46
tlael tlael is offline
Registered User
 
Join Date: Oct 2003
Location: St.Louis,MO
Posts: 120
What is in your <SID>alrt.log? Whenever you do a shutdown it will put entries in this file.
Reply With Quote
  #3 (permalink)  
Old 10-14-03, 10:58
reemagupta reemagupta is offline
Registered User
 
Join Date: Oct 2003
Posts: 71
Quote:
Originally posted by tlael
What is in your <SID>alrt.log? Whenever you do a shutdown it will put entries in this file.
Here is the entry in alert_<SID>.log file

Shutting down instance (immediate)
License high water mark = 37
Tue Oct 14 08:27:48 2003
ALTER DATABASE CLOSE NORMAL
Tue Oct 14 08:27:48 2003
SMON: disabling tx recovery
SMON: disabling cache recovery
Tue Oct 14 08:27:49 2003
Thread 1 closed at log sequence 19709
Tue Oct 14 08:27:49 2003
Completed: ALTER DATABASE CLOSE NORMAL
Reply With Quote
  #4 (permalink)  
Old 10-14-03, 11:17
gbrabham gbrabham is offline
Registered User
 
Join Date: Apr 2003
Location: Greenville, SC (USA)
Posts: 1,155
It looks like the database is waiting for a transaction to complete.

This might be the Bug in Oracle 8.1.7 where an additional archive
process gets created. Oracle waits until this process completes
prior to shutting down...

Shutdown abort (from another session) will get you down.
you might try this prior to shutdown as documented in Metalink

ALTER SYSTEM SET log_archive_max_processes=10;
alter system archive log stop;
ALTER SYSTEM SET log_archive_max_processes=1;
alter system archive log start;

HTH
Gregg
Reply With Quote
  #5 (permalink)  
Old 10-14-03, 11:21
reemagupta reemagupta is offline
Registered User
 
Join Date: Oct 2003
Posts: 71
Quote:
Originally posted by gbrabham
It looks like the database is waiting for a transaction to complete.

This might be the Bug in Oracle 8.1.7 where an additional archive
process gets created. Oracle waits until this process completes
prior to shutting down...

Shutdown abort (from another session) will get you down.
you might try this prior to shutdown as documented in Metalink

ALTER SYSTEM SET log_archive_max_processes=10;
alter system archive log stop;
ALTER SYSTEM SET log_archive_max_processes=1;
alter system archive log start;

HTH
Gregg
Gregg,

Thanks for your response

Where do I run these commands from
It is not letting me login

Reema
Reply With Quote
  #6 (permalink)  
Old 10-14-03, 11:52
gbrabham gbrabham is offline
Registered User
 
Join Date: Apr 2003
Location: Greenville, SC (USA)
Posts: 1,155
You need to start another svrmgrl session or sqlplus session

svrmgrl> set instance xxx (xxx is the service name)
svrmgrl> connect internal/password@xxx
svrmgrl> shutdown abort

next time try the above mentioned for archive processes...
Reply With Quote
  #7 (permalink)  
Old 10-14-03, 13:16
reemagupta reemagupta is offline
Registered User
 
Join Date: Oct 2003
Posts: 71
Thanks for your reply.

I will try it next time

Reema
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On