Oracle ORA-1563 error because the data file reaches the set maximum maxsize

Source: Internet
Author: User
When the data file of a database reaches the maximum tablespace, an error of ORA-1653: is reported. ORA-1653: unabletoextendtableTEST. COMM_DTTR_SVR

When the data file of a database reaches the maximum tablespace, an error of ORA-1653: is reported. The ORA-1653: unable to extend table TEST. COMM_DTTR_SVR

When the data file of a database reaches the maximum tablespace, an error of ORA-1653: is reported. As follows:

ORA-1653: unable to extend table TEST. COMM_DTTR_SVR_LOG by64 in tablespace TEST_SPACE

Solution:

You can add a data file to the tablespace. The added data file is automatically extended and can be infinitely expanded.

View the size and maximum value of the data file. You can query dba_data_files;

SQL>

Alter tablespace TEST_SPACE
Adddatafile '/Oracle/oms/oradata/pub/norm_data001.dbf'
Size 10 M autoextend on maxsize unlimited;

You can also set the data file where the tablespace is located to automatically expand and set the maxsize to be larger. The value of "unlimited" indicates that there is no limit.

SQL>

Alter database
Datafile '/oracle/oms/oradata/pub/pub_norm_data001.dbf'
Autoextend on maxsize unlimited;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.