Home : ORA-01653: unable to extend table ABC by X in tablespace OPSMASTERSTORAGE
Q10794 - ERRMSG: ORA-01653: unable to extend table ABC by X in tablespace OPSMASTERSTORAGE

PROBLEM:

User gets an error message -2147217900 - ORA-01653: unable to extend table ABC by X in tablespace OPSMASTERSTORAGE

where
ABC is a name of the current table
X is the number of bytes the table needs to be extented by

Here is an example screenshot :

CAUSE:

Typically occurs when writing a new record to oracle database, but there is not enough space to write it. The data file in oracle tablespace called OPSMASTERSTORAGE should be set to AUTOEXTEND. If it is not, Oracle will not auto-increase the size of the datafile, and will raise the above error.

 

SOLUTION:

WARNING: This procedure should be performed by your ORACLE Database Administrator.  
The SYSTEM user should have required privledges to perform this task.  

Enable Autoextend on the OPSMASTERSTORAGE tablespace by executing the following Oracle PL/SQL command:

ALTER DATABASE DATAFILE 'C:\ORACLE\ORADATA\ORA817\OPSMASTERSTORAGE.ORA' AUTOEXTEND ON NEXT 1024K

(you will have to put in the correct path to your OPSMASTERSTORAGE.ORA file)

 

 

Related Articles
No Related Articles Available.

Article Attachments
No Attachments Available.

Related External Links
No Related Links Available.
Help us improve this article...
What did you think of this article?

poor 
1
2
3
4
5
6
7
8
9
10

 excellent
Tell us why you rated the content this way. (optional)
 
Approved Comments...
No user comments available for this article.
Created on 2/21/2008 4:11 PM.
Last Modified on 2/21/2008 4:43 PM.
Last Modified by No Author Name Available!.
Article has been viewed 56851 times.
Rated 7 out of 10 based on 49 votes.
Print Article
Email Article