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

Oracle之备份还原

时间:2017-05-23 21:39:10      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:oracle exp imp expdp impdp

创建表分区

create tablespace apps datafile ‘&1\apps.dbf‘ size 10m autoextend on next 8m;
create tablespace appsys datafile ‘&1\appsys.dbf‘ size 10m autoextend on next 8m;

创建分区表空间

create tablespace APPS_00 datafile ‘&1\APPS_00.dbf‘ size 10M autoextend on next 8M;
create tablespace APPSYS_00 datafile ‘&1\APPSYS_00.dbf‘ size 10M autoextend on next 8M;

删除用户

drop user apps cascade;
drop user appsys cascade;

创建用户

create user apps identified by cape default tablespace apps;
create user appsys identified by cape default tablespace appsys;

授权

grant dba to apps with admin option;
grant dba to appsys;

grant create any table to apps;
grant alter any table to apps;
grant drop any table to apps;

grant create any index to apps;
grant drop any index to apps;

创建目录

create or replace directory expdp_wms_dir as ‘D:\data_bak\‘;
grant read, write on directory expdp_wms_dir to APPS;

EXP/IMP备份与还原

exp user/pwd@SID   file=d:\db_20101010.dmp log=d:\db_20101010.log  owner=(apps,appsys)

imp user/pwd@SID  file=D:\db_20101010.dmp  log=D:\db_20101010.log fromuser=apps touser=apps fromuser=appsys touser=appsys ignore=y

EXPDP/IMPDP备份还原

expdp user/pwd@SID dumpfile=DB20141216.dmp logfile=DB20141216.log schemas=(apps,appsys) directory=expdp_dir job_name=expdp_job version=11.1.0.2

impdp user/pwd@SID dumpfile=DB20141216.DMP logfile=DB20141216.log schemas=(apps,appsys) directory=impdp_dir job_name=impdp_job


Oracle之备份还原

标签:oracle exp imp expdp impdp

原文地址:http://11046468.blog.51cto.com/11036468/1928675

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