- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ORA -00604 andORA - 01555 while opening the databa...
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
Discussions
Discussions
Discussions
Forums
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
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
тАО11-12-2003 10:24 PM
тАО11-12-2003 10:24 PM
ORA -00604 andORA - 01555 while opening the database
Iam getting following errors when iam opening a database, OSS - HP10.20 Unix
Oracle : 7.3.2
Could you please help me on this.
==================================
ORA-00604: error occurred at recursive SQL level 1
ORA-01555: snapshot too old: rollback segment number 4 with name "R03" too small
=========================================
SVRMGR> startup mount
ORACLE instance started.
Total System Global Area 57981232 bytes
Fixed Size 38904 bytes
Variable Size 42672440 bytes
Database Buffers 14745600 bytes
Redo Buffers 524288 bytes
Database mounted.
SVRMGR> alter database open;
alter database open
*
ORA-00604: error occurred at recursive SQL level 1
ORA-01555: snapshot too old: rollback segment number 4 with name "R03" too small
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-12-2003 10:34 PM
тАО11-12-2003 10:34 PM
Re: ORA -00604 andORA - 01555 while opening the database
You usually see this when running long queries against a moving database.
Was the database shut down cleanly ?
I think you are coing to need help from Oracle, do you have a support contract ?
(Even if you do, you are running quite an old version of Oracle).
-- Graham
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-12-2003 10:35 PM
тАО11-12-2003 10:35 PM
Re: ORA -00604 andORA - 01555 while opening the database
1. There should be an offline rollback segment in the system tablespace that is not the system rollback segment. To find the name and status of this rollback segment, use the following select statement (logged into the system as internal): SELECT SEGMENT_NAME, TABLESPACE_NAME, OWNER, STATUS FROM DBA_ROLLBACK_SEGS WHERE TABLESPACE_NAME = 'SYSTEM'; SEGMENT_NAME TABLESPACE_NAME OWNER STATUS -------------------------------- --------------------------------- --------- -------------------- SYSTEM SYSTEM SYS ONLINE RB_TEMP SYSTEM SYS OFFLINE The rollback segment named SYSTEM should be online. The second rollback segment should be offline. Bring the second rollback segment online: ALTER ROLLBACK SEGMENT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-12-2003 10:36 PM
тАО11-12-2003 10:36 PM
Re: ORA -00604 andORA - 01555 while opening the database
Snapshot too old error occurs mainly due to small rollback segments.
It could also be that the rollback segment is corrupted.
Large transactions would really require a rollback segment of big size.
To resolve this open your initialization file
init
check for the lines rollback segments.
Remove the rollback segment name R03.
Then startup your database.
After you open the database you can create a rollback segment of bigger size and make that rollback segment online and then replace R03 with that rollback segment in the init
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-12-2003 10:39 PM
тАО11-12-2003 10:39 PM
Re: ORA -00604 andORA - 01555 while opening the database
Infact before you do anything it step would help analyzing the problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-13-2003 10:51 AM
тАО11-13-2003 10:51 AM
Re: ORA -00604 andORA - 01555 while opening the database
Thanks,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-13-2003 03:42 PM
тАО11-13-2003 03:42 PM
Re: ORA -00604 andORA - 01555 while opening the database
Thanks for your information.
The problem has been solved in the following way
SVRMGR> startup mount
SVRMGR> alter session set events '10015 trace name adjust_scn level 1';
SVRMGR> alter database open resetlogs;
Best Regards
Kvs Raju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-15-2003 01:28 PM
тАО11-15-2003 01:28 PM
Re: ORA -00604 andORA - 01555 while opening the database
Just to remind you taking a cold backup immediately after "alter database open resetlogs;".
good luck
twang