您的位置:首页 > 数据库 > Oracle

ORA-01157,ORA-01110

2016-12-14 17:31 323 查看
SQL>

select * from dba_temp_files

              *

ERROR at line 1:

ORA-01157: cannot identify/lock data file 201 - see DBWR trace file

ORA-01110: data file 201:

'/home/oracle/app/oracle/oradata/auxdb/tempfile/temp.264.922142585'

SQL>

set newname for tempfile  1 to "/home/oracle/app/oracle/oradata//auxdb/tempfile/temp.264.922142585";

create temporary tablespace TEMP01 tempfile '/home/oracle/app/oracle/oradata//auxdb/tempfile/temp01' size 2048m autoextend on next 32m maxsize unlimited extent management local;

alter database default temporary tablespace TEMP01;

DROP TABLESPACE TEMP including contents and datafiles;

create temporary tablespace TEMP tempfile '/home/oracle/app/oracle/oradata//auxdb/tempfile/temp.264.922142585' size 2048m autoextend on next 32m maxsize unlimited extent management local;

alter database default temporary tablespace TEMP;

DROP TABLESPACE TEMP01 including contents and datafiles;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息