ORA-01187,ORA-01110
ORA-01187,ORA-01110
Oracle Database 11.2.0.4
Symptoms
SQL> select file_name from dba_temp_files; |
Solution
- Check the tablespace name.
select * from v$tablespace; |
- Add the tempfile with new name into temp tablespace.
alter tablespace TEMP add tempfile 'E:\ORACLE\ORADATA\IC\TEMP_01.DBF' SIZE 100M AUTOEXTEND ON NEXT 100M; |
- Drop the tempfile which causing problem.
alter database tempfile 'E:\ORACLE\ORADATA\IC\TEMP01.DBF' drop; |
- Delete the tempfile from file system.
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.