1. Take the tablespace offline:
alter tablespace data offline normal;
2. Move the datafile physically, using an os command like cp:
cp data/oracle/proddb01/tmp/datafiles/data01.dbf /data/oracle/proddb01/datafile/data01.dbf
3. Inform the controlfile about your change:
alter database rename file '/data/oracle/proddb01/tmp/datafiles/data01.dbf' to '/data/oracle/proddb01/datafile/data01.dbf';
4. Make the tablespace available for usage again:
alter tablespace data online;
No comments:
Post a Comment