Oracle 数据导入导出

作者: hext123 | 来源:发表于2016-10-17 13:34 被阅读214次

    该命令在“开始菜单>>运行>>CMD”中执行

    一、数据导出(exp.exe)

    1、将数据库orcl完全导出,用户名system,密码accp,导出到d:\daochu.dmp文件中

    exp system/accp@orcl file=d:\daochu.dmp full=y
    

    2、将数据库orcl中scott用户的对象导出

    exp scott/accp@orcl file=d:\daochu.dmp
    

    3、将数据库orcl中的scott用户的表emp、dept导出

    exp scott/accp@orcl file= d:\daochu.dmp tables=(emp,dept)
    

    4、将数据库orcl中的表空间testSpace导出

    exp system/accp@orcl file=d:\daochu.dmp tablespaces=(testSpace)
    

    二、数据导入(imp.exe)

    1、将d:\daochu.dmp 中的数据导入 orcl数据库中。

    imp system/accp@orcl file=d:\daochu.dmp full=y
    

    2、如果导入时,数据表已经存在,将报错,对该表不会进行导入;加上ignore=y即可,表示忽略现有表,在现有表上追加记录。

    imp scott/accp@orcl file=d:\daochu.dmp  full=y  ignore=y
    

    将d:\daochu.dmp中的表emp导入

    imp scott/accp@orcl file=d:\daochu.dmp tables=(emp)

    相关文章

      网友评论

      • KevinYAN_c397:太简单了,可以把常用的压缩,加密,并行等参数介绍一下。😃
      • Qiang_Wang:在扩展一张expdp数据泵模式的倒库方式吧。
      • YamiYuk1:有用

      本文标题:Oracle 数据导入导出

      本文链接:https://www.haomeiwen.com/subject/dxaayttx.html