Home » RDBMS Server » Server Administration » Unable to extend table
Unable to extend table [message #56832] Tue, 29 April 2003 13:15 Go to next message
JUAN
Messages: 23
Registered: November 2000
Junior Member
Hi,

I was creating a procedure and the following error ocurred:

ORA-00604: error occurred at recursive SQL level 1
ORA-01653: unable to extend table SYS.IDL_CHAR$ by 27 in tablespace SYSTEM

then I try to increase the size of system tablespace and the following error ocurred:

ORA-01237: cannot extend datafile 3
ORA-01110: data file : '/der1/dbs/data/der_default.dbf'
ORA-09971: sfsfs: write error, unable to write header block.Additional information: 783360

Can somebody help?
Re: Unable to extend table [message #56834 is a reply to message #56832] Tue, 29 April 2003 13:43 Go to previous messageGo to next message
sai sreenivas jeedigunta
Messages: 370
Registered: November 2001
Senior Member
Hi,
Looks like there is no enough space in the Mount point/ Drive, free some resources and try againit should work..

sai
Re: Unable to extend table [message #56840 is a reply to message #56832] Wed, 30 April 2003 01:56 Go to previous message
John Anker Corneliussen
Messages: 5
Registered: February 2002
Junior Member
extend the tablespace with another datafile ...
using dbastudio - or sql using ...

Adding a Datafile Example
The following statement adds a datafile to the tablespace and changes the default logging attribute to NOLOGGING. When more space is needed, new extents of size 10 kilobytes will be added up to a maximum of 100 kilobytes:

ALTER TABLESPACE accounting NOLOGGING
ADD DATAFILE 'disk3:pay3.dbf'
SIZE 50K
AUTOEXTEND ON
NEXT 10K
MAXSIZE 100K;

Altering a tablespace logging attribute has no affect on the logging attributes of the existing schema objects within the tablespace. The tablespace-level logging attribute can be overridden by logging specifications at the table, index, and partition levels.
Previous Topic: Oracle Architecture
Next Topic: DBMS_JOB Urgent Please!!!
Goto Forum:
  


Current Time: Fri Sep 20 08:17:23 CDT 2024