Oracle表空间文件迁移

Oracle表空间文件迁移

set ORACLE_SID = ORCL;

sqlplus /nolog

connect sys/1234 as sysdba;

alter tablespace tablespace_name offline;

alter database rename file ......\tablespace_name.dbf  to ......\tablespace_name.dbf;

alter tablespace tablespace_name online;

recover datafile tablespace_name.DBF;

alter tablespace tablespace_name online;

commit;

exit;

 

Oracle表空间文件位置查询

SELECT tablespace_name, 
file_id, 
file_name, 
round(bytes / (1024 * 1024), 0) total_space 
FROM dba_data_files 

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。