ORA-01114 (temporary table space is broken, or full)

Source: Internet
Author: User

Today, the Application Server Background report error:

java.sql.sqlexception:ora-01114: IO Error when writing block to file 201 (Block # 1015305)

Ora-27069:skgfdisp: Attempting to perform I/O outside the file scope

OSD-04026: Invalid argument passed. (OS 1015311)

ORA-01114: IO Error when writing block to file 201 (Block # 1015305)

Ora-27069:skgfdisp: Attempting to perform I/O outside the file scope

OSD-04026: Invalid argument passed. (OS 1015311)

On the Internet to find information that the database temporary table space is full or broken.

Querying the size of a staging table space

Select name, bytes/1024/1024 as "size (M)" from V$tempfile Order by bytes;

See the maximum data file D:\Oracle\ORADATA\TFJS\TEMP in the system. The DBF size is 8G, and the initial estimate is the reason why the temp table space cannot be extended.

Workaround:

1. Query the default temporary table space under the user

SELECT * from database_properties where property_name= ' default_temp_tablespace ';

2. Create a new temporary tablespace

Create temporary tablespace temp01 tempfile ' D:\ORACLE\ORADATA\TFJS\TEMP01. DBF '

Size 1000M autoextend on;

3. Modify the default table space

ALTER DATABASE default temporary tablespace temp01;

This article is from the Linux commune website (www.linuxidc.com) Source Link: http://www.linuxidc.com/Linux/2011-11/47354.htm

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.