Oracle数据库导入导出


首先本地安装的有Oracle数据库Oracle安装目录d:/oracle/product/10.2.0/db_1/bin/下有exp.exe和imp.exe

 

【用exp数据库导出】:
1 将数据库TEST完全导出,用户名system 密码manager 导出到D:/daochu.dmp中
    exp system/manager@TEST file=d:/daochu.dmp full=y
2 将数据库中system用户与sys用户的表导出
    exp system/manager@TEST file=d:/daochu.dmp owner=(system,sys)

3 将数据库中的表table1 、table2导出
    exp system/manager@TEST file=d:/daochu.dmp tables=(table1,table2)

4 将数据库中的表table1中的字段filed1以”00″打头的数据导出
    exp system/manager@TEST file=d:/daochu.dmp tables=(table1) query=/” where filed1like ‘00%’/”

【用imp数据库导入】:
1 将D:/daochu.dmp 中的数据导入 TEST数据库中。
   imp system/manager@TEST   file=d:/daochu.dmp
   上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。
   在后面加上 ignore=y 就可以了。

2 将d:/daochu.dmp中的表table1 导入
imp system/manager@TEST   file=d:/daochu.dmp   tables=(table1)

 

原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/277752.html

(0)
上一篇 2022年7月29日
下一篇 2022年7月29日

相关推荐

发表回复

登录后才能评论