Question: How does the automatic
data file move feature in 12c?
Answer: Simply, you can now move
a datafile while the database is up and accepting
updates. In the example below, we move the system
tablespace datafile from one mount point to another, all
while the database is active:
alter database
move datafile
'/u01/app/oracle/oradata/system.dbf'
to
'/u02/app/oracle/oradata/my12c_db/system.dbf';
Also, starting in Oracle 12c you can now move a
datafile from number, such that you can select a
specific datafile number and move it to a new named
locations, without specifying the old datafile name: