oracle数据泵导出导入
2021/4/30 19:55:16
本文主要是介绍oracle数据泵导出导入,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
数据备份要先看看需要导出的对象大小,如果有些日志表跟业务无关占用空间很大,就可以不导出这类表从而增加数据导出的效率。
数据泵确实很好用,但是网上看到的例子总是不是那么全,自己抽空把这些年用到的例子总结了一下,希望能帮到一些道友。
注:如下例子中testUser是用户名testUserPwd是用户密码
一、查看数据库的大小
全库大小
select segment_name,segment_type, sum(bytes)/1024/1024/1024 GB from dba_segments where segment_type in('TABLE','INDEX','TABLE PARTITION')
group by segment_name ,segment_type
order by GB desc
某个用户的大小
select segment_name,segment_type, sum(bytes)/1024/1024/1024 GB from dba_segments where segment_type in('TABLE','INDEX','TABLE PARTITION')
and OWNER ='TESTUSER'
group by segment_name ,segment_type
order by GB desc
1、表占用空间:
select segment_name, sum(bytes)/1024/1024/1024 GB from user_segments where segment_type='TABLE' group by segment_name
order by GB desc
2、索引占用空间:
select segment_name ,sum(bytes)/1024/1024/1024 GB from user_segments where segment_type ='INDEX' group by segment_name
order by GB desc
3、分区表TABLE PARTITION占用空间:
select segment_name,sum(bytes)/1024/1024/1024 GB from user_segments where segment_type='TABLE PARTITION' group by segment_name
order by GB desc
二、导出、导入脚本
1、创建路径
(sqlplus里运行)
select * from dba_directories; --查看现有的路径
create directory exp as '/mnt/share/'; --数据库里创建路径
grant read on directory exp to testUser; --给testUser这个用户赋予读路径的权限
grant write on directory exp to testUser; --给testUser这个用户赋予写路径的权限
(linux系统下oracle用户下运行)
2、导出脚本
普通用法
--导出testUser用户下的所有数据
expdp testUser/testUserPwd directory=exp dumpfile=FILE.bak schemas=testUser;
特殊用法
(1)导出时排除某表EXCLUDE用法
--不导出EMP和DEPT表
expdp testUser/testUserPwd directory=exp_dir dumpfile=datafile.bak EXCLUDE=TABLE:\"IN\(\'EMP\',\'DEPT\'\)\"
--不导出REPORT开头的表
expdp testUser/testUserPwd directory=exp dumpfile=no_report.bak EXCLUDE=TABLE:\"LIKE \'REPORT%\'\"
--导出排除MV开头和TMP开头的表
expdp testUser/testUserPwd dumpfile=exp logfile=/opt/out.log directory=expdir EXCLUDE=TABLE:\"LIKE \'MV%\'\", EXCLUDE=TABLE:\"LIKE \'TMP%\'\"
--除了排除指定字母开头的表,还可以再排除特定的表
expdp testUser/testUserPwd dumpfile=exp logfile=/opt/out.log directory=expdir EXCLUDE=TABLE:\"LIKE \'MV%\'\", EXCLUDE=TABLE:\"LIKE \'TMP%\'\" ,EXCLUDE=TABLE:\"IN \(\'T1\'\,\'T2\'\)\"
(2)只导出特定的表tables用法
expdp testUser/testUserPwd dumpfile=exp:scott.bak tables = emp,dept
(3)INCLUDE用法
expdp testUser/testUserPwd DIRECTORY=exp SCHEMAS=testUser DUMPFILE=yes_report.bak INCLUDE=TABLE:"LIKE'REPORT%'";
3、导入脚本
普通用法
--导入testUser用户下的所有数据
impdp testUser/testUserPwd dumpfile=exp:FILE.bak
特殊用法
(1)只导入特殊的表
impdp scott/tiger dumpfile=exp:scott.bak tables = emp,dept
(2)导入时数据存在就truncate(删除)
impdp scott/tiger dumpfile=exp:scott.bak tables = emp table_exists_action=truncate;
注:table_exists_action后面的参数还可以跟 append\replace\truncate\skip
三、 并行导出导入
(1)并行导出
举 例:某用户对象占用了4G左右的空间,实际导出后的DUMP文件约为1G,我们尝试在导出该用户时指定并行度为4,设置单个文件不超过500M,则语法如下:
expdp user/pwd directory=exp dumpfile=expdp_20210430_%U.dmp logfile=expdp_20210430.log filesize=500M parallel=4
(2)并行导入
举例:某dmp文件中包含了40张表,我们尝试在导入该DMP文件时指定并行度为4,则语法如下:
impdp user/pwd directory=exp dumpfile=expdp_20210430_%U.dmp logfile=expdp_20210430.log parallel=4
这篇关于oracle数据泵导出导入的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享