Discussions
Categories
- 196.9K All Categories
- 2.2K Data
- 239 Big Data Appliance
- 1.9K Data Science
- 450.3K Databases
- 221.7K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 550 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 545 SQLcl
- 4K SQL Developer Data Modeler
- 187K SQL & PL/SQL
- 21.3K SQL Developer
- 295.9K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.6K Development Tools
- 107 DevOps
- 3.1K QA/Testing
- 646K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 155 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 18 Java Essentials
- 160 Java 8 Questions
- 86K Java Programming
- 80 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 204 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 440 LiveLabs
- 38 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 232 Portuguese
ORA-01653: unable to extend table

445084
Member Posts: 268
Hi all,
I am using oracle 10g AS.Our application is in production. I am facing this error.plz help me bcoze i have to solve this issue.
I am using oracle 10g AS.Our application is in production. I am facing this error.plz help me bcoze i have to solve this issue.
Comments
-
That error normally means you don't have space enough in the tablespace. You should post the complete error stack you get.
-
The complete error log stack is as following:
oracle.panama.messaging.transport.impl.InternalTransportException: transport internal exception: java.sql.SQLException: ORA-01653: unable to extend table WIRELESS.TRANS_STORE by 8192 in tablespace IAS_META
ORA-06512: at "WIRELESS.TRANSPORT", line 313
ORA-06512: at "WIRELESS.TRANSPORT", line 681
ORA-06512: at line 1
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:304)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:271)
at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:625)
at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:180)
at oracle.jdbc.driver.T4CCallableStatement.execute_for_rows(T4CCallableStatement.java:790)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1109)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2901)
at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:2992)
at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4124)
at oracle.panama.messaging.transport.impl.DBStorage.enqueueSendingMessage(DBStorage.java:620)
at oracle.panama.messaging.transport.impl.SendingBilling.send(SendingBilling.java:125)
at oracle.panama.messaging.transport.impl.MessengerImpl.deliver(MessengerImpl.java:1216)
REgs,
Saqib -
Then it appears that tablespace IAS_META is full. You should whether add a new datafile to the tablespace, or increase existing datafile(s) size.
Yoann. -
Please let me know the exact queury to ADD new data file and to INCREASE fize of existing tablespace.
Thanks -
ADD:
ALTER TABLESPACE tablespace_name ADD DATAFILE 'path_and_file_name' SIZE xxxM AUTOEXTEND OFF;
INCREASE:ALTER DATABASE DATAFILE 'path_and_file_name' RESIZE xxxM;
Of course xxx is the size in MiB, tablespace_name is IAS_META and path_and_file_name is the absolute path and file name of the datafile to be added or resized.
Yoann. -
ALTER TABLESPACE tablespace_name ADD DATAFILE path SIZE file_size ;
Thanks -
Thanks!
But 1 thing is to tell u...there is only 4.35 GB space on drive where oracle is installed.
I m going to increase the tablespce.
anyway i think we must increase harddarive?
What do u think?
Saqib -
Data files makes up the physical storage capacity of a tablespace. So add datafile is the same as increasing size of tablespace.
If you got more syntax questions and the like, I recommend to use the manuals. In this specific case, the Sql Reference guide.
Go search http://tahiti.oracle.com -
anyway i think we must increase harddarive?only you can anser this... it depends on many things:
. What's the dayly/monthly data grow?
. How much free space/occupied space is there in the filesystems/tablespaces/datafiles?
. What's the overall database size ?
. Can you expect "burst growth" or is it constant growth?
Yoann. -
Total harddisk space = 72GB
O/S drive is on 15 GB and 54GB is for oracle drive.
tablespace taking space=32GB
other tablespaces = 5GB
Free space on this drive = 4 GB.
Saqib
This discussion has been closed.