ORA-01114错误

ORA-01114 IO error writing block to file string (block # string)


Cause: The device on which the file resides is probably offline. If the file is a temporary file, then it is also possible that the device has run out of space. This could happen because disk space of temporary files is not necessarily allocated at file creation time.

Action: Restore access to the device or remove unnecessary files to free up space.

3.查看物理磁盘剩余空间还有20多个G,排除磁盘空间不足的原因。

4.查看各个数据文件大小:

SQL> SELECT bytes/1024/1024/1024 AS "大小(G)",NAME FROM v$datafile ORDER BY bytes;

大小(G)   NAME
----------   --------------------------------------------------------------------------------
0.00488281 D:\ORACLE\ORADATA\KDC\TEMP02.ORA
0.01525878 C:\DATAFILE\KDCWZ_PLAN.ORA
0.01678466 D:\ORACLE\ORADATA\KDC\TOOLS01.DBF
0.01953125 D:\ORACLE\ORADATA\KDC\CWMLITE01.DBF
0.01953125 D:\ORACLE\ORADATA\KDC\DRSYS01.DBF
0.01953125 D:\ORACLE\ORADATA\KDC\ODM01.DBF
0.02441406 D:\ORACLE\ORADATA\KDC\INDX01.DBF
0.03723144 D:\ORACLE\ORADATA\KDC\XDB01.DBF
0.14587402 D:\ORACLE\ORADATA\KDC\EXAMPLE01.DBF
0.34765625 D:\DATAFILE\KDCWZ_BILL.ORA
0.41015625 D:\ORACLE\ORADATA\KDC\SYSTEM01.DBF
0.49328613 E:\DATAFILE\KDCWZ_STOCK.ORA
1.50741577 D:\ORACLE\ORADATA\KDC\UNDOTBS01.DBF
2.03735351 D:\ORACLE\ORADATA\KDC\USERS01.DBF

14 行 已选择



SQL> SELECT bytes/1024/1024/1024 AS "大小(G)",NAME FROM v$tempfile ORDER BY bytes;

大小(G)  NAME
---------- --------------------------------------------------------------------------------
8.00000000 D:\ORACLE\ORADATA\KDC\TEMP01.DBF

看到系统中最大数据文件D:\ORACLE\ORADATA\KDC\TEMP01.DBF 大小为8G,初步估计是temp表空间无法扩展的原因。

5.重建temp表空间:





1.以sysdba身份登录

2.创建临时中转的临时表空间TEMP2

 SQL> create temporary tablespace TEMP2 TEMPFILE D:\ORACLE\ORADATA\KDC\TEM
P02.DBF' SIZE 5M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
2 /

表空间已创建。

3.修改默认临时表空间为TEMP2

SQL> alter database default temporary tablespace temp2;

数据库已更改。

4.drop原来的临时表空间TEMP:

SQL> drop tablespace temp including contents and datafiles;

表空间已丢弃。

5.重新创建临时表空间TEMP:

 SQL> create temporary tablespace TEMP TEMPFILE D:\ORACLE\ORADATA\KDC\TEM
P01.DBF' SIZE 4000M(这个地方跟你的需要而定) REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
2 /

表空间已创建。

6.更改默认临时表空间为TEMP:

SQL> alter database default temporary tablespace temp;

数据库已更改。

7.drop临时表空间TEMP2

SQL> drop tablespace temp2 including contents and datafiles;

表空间已丢弃。



OK。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值