在12c以前的版本中,想要移动数据文件的位置,只有在数据库mount阶段或者表空间数据文件offline的情况下才可以移动,这就意味着想要移动数据文件只能在停机窗口下进行,在12c以及之后的版本中可以在线进行数据文件的move动作,减少停机窗口时间。具体可参考如下文档.
GOAL
In this release, a data file can now be moved online while it is open and being accessed, even for data files in system tablespace.
Being able to move a data file online means that many maintenance operations, such as moving data to another storage device or moving databases into Oracle Automatic Storage Management (Oracle ASM), can be performed while users are accessing the system. This ensures that continuity of service and service-level agreements (SLA) on uptime can be met.
SOLUTION
With Oracle 12C, you can now do the following operations while the datafile is online and being accessed:
- Renaming an Online Data File
- Relocating an Online Data File
- Copying an Online Data File
- Relocating an Online Data File and Overwriting an Existing File
- Relocating an Online Data File to Oracle ASM
The following is an example of how each operation is done:
Renaming an Online Data File:
SQL> CREATE TABLESPACE test DATAFILE ‘
EXTENT MANAGEMENT LOCAL
SEGMENT SPACE MANAGEMENT AUTO; 2 3
Tablespace created.
SQL> select file_name, status, online_status from dba_data_files;
FILE_NAME
STATUS ONLINE_<