标签:style sp 文件 数据 div on ad ef size
应用背景:需要查看和修改一下Interlib中的数据,所以要反复的将备份数据进行导入和清空。整理一下步骤
drop tablespace interlib including contents;
drop user interlib cascade;
create tablespace interlib datafile‘/opt/oracle/oradata/interlib/interlib.dbf‘ size 2048m;
alter tablespace interlib add datafile‘/opt/oracle/oradata/interlib/interlib1.dbf‘ size 2048m;
create user interlib identified by ***** default tablespace interlib;
grant dba to intelrib;
imp interlib/***** full=y file=/opt/backup/backup.dmp
标签:style sp 文件 数据 div on ad ef size
原文地址:http://www.cnblogs.com/zhengcong/p/4074694.html