Home » RDBMS Server » Server Administration » while creating the index ORA-00603: ORACLE server session terminated by fatal error (oracle 9i, aix5.2)
while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467721] Mon, 26 July 2010 23:34 Go to next message
soft_doctor
Messages: 33
Registered: May 2010
Member
Hi All,

While creating the index we are getting the error
"ORA-00603: ORACLE server session terminated by fatal error".

We have the space in tablespaces and also in the file systesm.
Please suggest.

Regards,
Chandu.
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467722 is a reply to message #467721] Mon, 26 July 2010 23:44 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
>Please suggest.
Upgrade to an Oracle version supported in the 21st century
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467725 is a reply to message #467722] Mon, 26 July 2010 23:50 Go to previous messageGo to next message
soft_doctor
Messages: 33
Registered: May 2010
Member
From 2 years, we are maintaining this database. We did not get this error till now.
Can i expect any alternative solution?
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467726 is a reply to message #467725] Mon, 26 July 2010 23:53 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
00603, 00000, "ORACLE server session terminated by fatal error"
// *Cause: An ORACLE server session was in an unrecoverable state.
// *Action: Login to ORACLE again so a new server session will be created

any additional clues in alert_SID.log file?
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467728 is a reply to message #467721] Tue, 27 July 2010 00:00 Go to previous messageGo to next message
soft_doctor
Messages: 33
Registered: May 2010
Member

Errors in file /home/oracle/admin/atca57/udump/atca57_ora_60298.trc:
ORA-01114: IO error writing block to file 1023 (block # 40771)
ORA-27063: skgfospo: number of bytes read/written is incorrect
IBM AIX RISC System/6000 Error: 28: No space left on device
Additional information: -1
Additional information: 102400
ORA-01114: IO error writing block to file 1023 (block # 40771)
ORA-27063: skgfospo: number of bytes read/written is incorrect
IBM AIX RISC System/6000 Error: 28: No space left on device
Additional information: -1
Additional information: 102400
ORA-01114: IO error writing block to file 1023 (block # 40771)
ORA-27063: skgfospo: number of bytes read/written is incorrect
IBM AIX RISC System/6000 Error: 28: No space left on device
Additional information: -1
Additional information: 102400
ORA-01114: IO error writing block to file 1023 (block # 40746)
ORA-27063: skgfospo: number of bytes read/written is incorrect
IBM AIX RISC System/6000 Error: 28: No space left on device
Additional information: -1
Additional information: 102400
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467730 is a reply to message #467728] Tue, 27 July 2010 00:03 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
>IBM AIX RISC System/6000 Error: 28: No space left on device

disk is full
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467745 is a reply to message #467730] Tue, 27 July 2010 01:35 Go to previous messageGo to next message
rahulvb
Messages: 924
Registered: October 2009
Location: Somewhere Near Equator.
Senior Member
SO Add new disk or free same space
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467748 is a reply to message #467721] Tue, 27 July 2010 01:42 Go to previous messageGo to next message
soft_doctor
Messages: 33
Registered: May 2010
Member
We have the sufficient space in all the tablespaces. Can you
kindly let me know exact issue and solution in details. Thanks!
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467755 is a reply to message #467748] Tue, 27 July 2010 02:37 Go to previous messageGo to next message
Michel Cadot
Messages: 68641
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
let me know exact issue and solution in details. Thanks!

The only thing we can say with what you posted is that "disk is full".

You think you have space enough but it seems Oracle tries to extend a file.

Regards
Michel
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467766 is a reply to message #467755] Tue, 27 July 2010 04:49 Go to previous messageGo to next message
zouxiangdong
Messages: 3
Registered: July 2010
Junior Member
first you should add a new harddisk,then create a tablespace ,move the data to the new tablspace.
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #467804 is a reply to message #467766] Tue, 27 July 2010 08:16 Go to previous messageGo to next message
joy_division
Messages: 4963
Registered: February 2005
Location: East Coast USA
Senior Member
zouxiangdong wrote on Tue, 27 July 2010 05:49
first you should add a new harddisk,then create a tablespace ,move the data to the new tablspace.


Incorrect. Why should objects be moved to a new tablespace?
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #468619 is a reply to message #467804] Sat, 31 July 2010 03:26 Go to previous messageGo to next message
ashy
Messages: 2
Registered: July 2010
Junior Member
The device on which the file(IO error writing block to file 1023 (block # 40771))
resides is probably offline. If the file is a temporary file, then it is also possible that the device has run out of space.
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #468968 is a reply to message #468619] Mon, 02 August 2010 13:07 Go to previous messageGo to next message
joy_division
Messages: 4963
Registered: February 2005
Location: East Coast USA
Senior Member
ashy wrote on Sat, 31 July 2010 04:26
The device on which the file(IO error writing block to file 1023 (block # 40771))
resides is probably offline. If the file is a temporary file, then it is also possible that the device has run out of space.


Why do you insist on making new guesses when the obvious correct answer was already given; The disk is full. Period.
Re: while creating the index ORA-00603: ORACLE server session terminated by fatal error [message #468990 is a reply to message #467748] Mon, 02 August 2010 21:32 Go to previous message
hkchital
Messages: 128
Registered: September 2008
Location: Singapore
Senior Member
The error for "file 1023" is on a TEMPORARY TABLESPACE tempfile.

So, check the tempfiles of your temporary tablespace(s). The filesystem holding one or more of the tempfiles was full and the tempfile(s) on that filesystem had attempted to autoextend.

Hemant K Chitale
Previous Topic: How to see the complete content of trigger_body in user_triggers
Next Topic: how to delete files in incident folder?
Goto Forum:
  


Current Time: Fri Apr 19 15:47:17 CDT 2024