码迷,mamicode.com
首页 > 数据库 > 详细

Oracle表空间文件迁移

时间:2015-05-13 14:36:54      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

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 

 

Oracle表空间文件迁移

标签:

原文地址:http://www.cnblogs.com/XueRong-7/p/4500274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!