标签:source 创建用户 port arch copy 指定 extent nec 系统表
1.配置测试环境2.文件系统表空间迁移到ASM中去
rman target /
report schema; 查看表空间
sql ‘alter tablespace test offline‘;离线表空间
backup as copy datafile 5 format ‘+DATA‘;Copy类型备份表空间
switch datafile 5 to copy;切换表空间文件到copy副本
sql ‘alter tablespace test online‘;上线表空间
report schema;
sqlplus / as sysdba
select ts#,name from v$tablespace where name=‘TEST‘ union all select file#,name from v$datafile where ts#=6;
select * from v$dbfile;
sqlplus test/123456@orcl
select tname from tab;
标签:source 创建用户 port arch copy 指定 extent nec 系统表
原文地址:http://blog.51cto.com/yiliang/2342391