- Login to SQL*Plus
- Connect as SYS DBA with CONNECT / AS SYSDBA command
- Make offline the affected tablespace
- Modify the name or location of datafiles in Oracle data dictionary using following command syntax:
- Bring the tablespace online again
- If you experienced this error : ORA-01113, execute this syntax:
ALTER TABLESPACE tablespace_name OFFLINE;
ALTER TABLESPACE tablespace_name RENAME DATAFILE 'fully qualified path to original data file name' TO 'new or original fully qualified path to new or original data file name';
ALTER TABLESPACE tablespace_name ONLINE;
recover datafile 'new fully qualified path to original data file name'
source : otn