首页 > 代码库 > 关于exp和imp
关于exp和imp
exp和imp相比于rman或者其他第三方软件已经不是作为主要备份工具了,但是个人认为作为一个转储工具还是比较方便的。
导出整个数据库
exp system/manager@orcl file=e:\xx.dmp log=e:\xx.log compress=n buffer=100000,full=y
导出用户schema
exp system/manager@orcl file=e:\xx.dmp buffer=1000000 owner=scott
导出表
exp system/manager@orcl file=e:\xx.dmp tables=(emp,dept) owner=scott
导入
数据的导入
1 将D:\xx.dmp 中的数据导入 TEST数据库中。
imp system/manager@TEST file=d:\xx.dmp
imp system/manager@TEST full=y file=d:\xx.dmp ignore=y
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。
在后面加上 ignore=y 就可以了。
2 将d:xx.dmp中的表table1 导入
imp system/manager@TEST file=d:\xx.dmp tables=(table1)
关于exp和imp
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。