move datafile to new location
hi,
need to move dataflies to new location.
Have studied 115424.1 and is find with me.
QUESTIONS:
1.
I am taking RMAN into consideration. How do RMAN recognise the new location to backup my files?
Does the below steps from 115.424.1 sufficient to tell RMAN the new location?
--7. Once the tablespace is offline you will need to rename the datafile(s) to the new location.
-- This updates the entry for the datafile(s) in the controlfile.
ALTER DATABASE RENAME FILE '/FULL_PATH_OF_OLD_LOCATION/AND_DATAFILE_NAME.DBF' TO '/FULL_PATH_OF_NEW_LOCATION/AND_DATAFILE_NAME.DBF';
0