exp和imp相比于rman或者其他第三方软件已经不是作为主要备份工具了,但是个人认为作为一个转储工具还是比较方便的。
导出整个数据库
exp system/[email protected] file=e:\xx.dmp log=e:\xx.log compress=n buffer=100000,full=y
导出用户schema
exp system/[email protected] file=e:\xx.dmp buffer=1000000 owner=scott
导出表
exp system/[email protected] file=e:\xx.dmp tables=(emp,dept) owner=scott
导入
数据的导入
1 将D:\xx.dmp 中的数据导入 TEST数据库中。
imp system/[email protected] file=d:\xx.dmp
imp system/[email protected] full=y file=d:\xx.dmp ignore=y
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。
在后面加上 ignore=y 就可以了。
2 将d:xx.dmp中的表table1 导入
imp system/[email protected] file=d:\xx.dmp tables=(table1)
时间: 2024-10-27 08:26:22