- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: oracle can not startup,why?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2004 09:43 PM
07-24-2004 09:43 PM
oracle can not startup,why?
SQL*Plus: Release 8.1.6.0.0 - Production on Sun Jul 25 18:09:34 2004
(c) Copyright 1999 Oracle Corporation. All rights reserved.
SQL> Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 164018904 bytes
Fixed Size 96984 bytes
Variable Size 78389248 bytes
Database Buffers 83886080 bytes
Redo Buffers 1646592 bytes
ORA-00205: error in identifying controlfile, check alert log for more info
SQL> Disconnected
Database "ccora" warm started.
8.1
/app/oracle/product/8.1.6
ccora
/app/oracle/product/8.1.6/dbs/initccora.ora
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2004 09:49 PM
07-24-2004 09:49 PM
Re: oracle can not startup,why?
[/app/oracle/product/8.1.6/bin$]./dbshut
Oracle Server Manager Release 3.1.6.0.0 - Production
Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.
Oracle8i Enterprise Edition Release 8.1.6.0.0, 64 bit - Production
With the Partitioning option
JServer Release 8.1.6.0.0 - Production
SVRMGR> Connected.
SVRMGR> ORA-01507: database not mounted
ORACLE instance shut down.
SVRMGR>
Server Manager complete.
Database "ccora" shut down.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2004 10:40 PM
07-24-2004 10:40 PM
Re: oracle can not startup,why?
First of all, check whether all volume groups are activated. Run:
vgdisplay
If everything is OK, check where control files were built and verify that the file system where control files are located is mounted.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2004 11:30 PM
07-24-2004 11:30 PM
Re: oracle can not startup,why?
if all is mounted, check whether control files exist, destination you can get from pfile or spfile
if you are using pfile
cat $ORACLE_HOME/dbs/initSID.ora
if you are using spfile
cat $ORACLE_HOME/dbs/spfileSID.ora
br Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2004 05:01 AM
07-25-2004 05:01 AM
Re: oracle can not startup,why?
>> ORA-00205: error in identifying controlfile, check alert log for more info
Oracle means every word of that.
1) It has trouble reading the control file
2) Check the alert log.
2) Did you check the alert log?
Care to share the detailed message from there?
1) My approach to this kind of error is to 'play Oracle'. What does it have to do to start the DB. Well...
First it needs to know whcih DB, but translating ORACLE_SID. So check $ORACLE_SID. Is it what you expect?
Next it will open teh parameter file. In there it will find the control file pointer, and in the control file it will find the database files.
So... find the control file:
echo $ORACLE_HOME
ls $ORACLE_HOME/dbs/*$ORACLE_SID
grep control $ORACLE_HOME/dbs/*$ORACLE_SID
Now carefully look at the file specs returned.
Try an ls -l on those files.
Try cp to /dev/null for those files.
Try to explain any failure in the steps above and you will have found the core problem. Now try to fix that :-).
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2004 07:24 AM
07-25-2004 07:24 AM
Re: oracle can not startup,why?
foir spfile use strings instead off cat
strings $ORACLE_HOME/dbs/spfileSID.ora
br Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2004 01:28 PM
07-25-2004 01:28 PM
Re: oracle can not startup,why?
When you try to start the oracle database, and it errors saying
ORA-00205: error in identifying controlfile, check alert log for more info,
means that the control files specified in the init
Check for the following. View the init
Then look in the directory to see if the control files exists.
The physical file location and name are same as the one specified in the init
I hope this helps
Indira A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2005 09:19 PM
04-14-2005 09:19 PM
Re: oracle can not startup,why?
I change the semmni to 600 (400) and semmns to 1200 (600) (semmni*2), and works well.