Oracle Tutorial: ORA-25153 temporary tablespace is empty, ORA-01652 cannot pass 128

Source: Internet
Author: User

Oracle Tutorial: ORA-25153 temporary tablespace is empty, ORA-01652 cannot pass 128

I wrote a complex select statement, and suddenly Oracle reported: ORA-25153 temporary tablespace is empty, this error, so I checked online, found the following solution: create a new temporary tablespace.

First, you must have the system permission. After logging in,

Step 1: Create a tablespace, as shown below. In the quotation marks, "d" is the drive letter, "oracleoradatatestdbtemp01" is the file name, and "M" is the size,

Temp01 is the temporary space name, which can be modified.

Create temporary tablespace temp01 tempfile 'd: oracleoradatatestdbtemp01

. Dbf 'size 100 m;

Step 2: Change the temporary tablespace of the database to update the original tablespace to the new one.

Alter database default temporary tablespace temp01;

Step 3: delete the original temporary tablespace

Drop tablespace temp;

After the following modifications, the ORA-25153 error can be solved, but if the size value in the first step is too small, it will report that the ORA-01652 cannot pass 128.

Modify it here.

Create temporary tablespace temp01 tempfile 'd: oracleoradatatestdbtemp01

. Dbf 'size 100 m;

.

Related Article

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.