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

oracle导入导出(用得比较多)

时间:2015-02-06 15:00:04      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

1.创建目录directory(角色system/sys)

create directory hello_file as ‘d:\dupmfile‘;
--查看所有已创建的directory
--select * from dba_directories;
--drop directory删除路径用的.

--drop directory exp_dir;


2.创建表空间(可以使用其默认表空间)

2.1创建临时表空间 

create temporary tablespacehello_temp 
tempfile ‘f:\oracle\data\hello_temp.dbf‘ 
size 1024m 
autoextend on 
next 32m 
extent management local; 



2.2创建数据表空间 

create tablespacehello_data 
logging 
datafile ‘f:\oracle\data\hello_data.dbf‘ 
size 512m 
autoextend on 
next 32m  

extent management local; 


3.创建用户并修改表空间

conn system/system@orcl;
--删除之前用户
drop user hello_user cascade;
--创建用户(如果有表空间,则加上)

create user hello_user identified bypass default;-- tablespace hello_data temporary tablespace hello_temp;
 

4.赋权限

--用户的权限
grant resource,connect,dba to hello_user;
--目录的权限
grant read,write on directory hello_file tohello_user;

5.导出

expdp original_user/pass@orcl directory=hello_file dumpfile=data20141014.dmp schemas=original_user
--导出到所建的directory的目录下d:\dupmfile

6.导入

--remap_tablespace改表空间

--remap_schema将original_user用户导入到hello_user中,如果用户名相同,这句可以省略

--data20141014.dmp导出的数据库文件名

impdp hello_user/pass@orcl directory=hello_filedumpfile=data20141014.dmp remap_tablespace=original_data:hello_data remap_schema=original_user:hello_user

oracle导入导出(用得比较多)

标签:

原文地址:http://blog.csdn.net/hgg923/article/details/43563895

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