Oracle数据导入导出基本操作示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle数据导入导出基本操作示例相关的知识,希望对你有一定的参考价值。

Oracle数据导入导出基本操作示例


  1. 数据导出

    a.将数据库orcl完全导出,用户名user 密码password 导出到D:\dc.dmp中    

     exp user/[email protected]   file=d:\dc.dmp    full=y

     full=y   表示全库导出


    b.将数据库中user1和user2用户导出

     exp user/[email protected]  file=d:\dc.dmp    owner=(user1,user2)

     full方式可以备份所有用户的数据库对象,包括表空间、用户信息等,owner=XX只能备份指定用户的对象.


    c.将用户user中表user_operator,user_id导出

     exp user/[email protected]   file=d:\dc.dmp  tables=(user_operator,user_id)

     tables=xx 表示备份相关表


  d.按条件导出数据

   exp user/[email protected]   file=d:\dc.dmp tables=(user_id) query=’where dept_id=1’

  e.只导出表,不导出数据

   exp user/[email protected]   file=d:\dc.dmp  tables=(user_id) rows=N 


2.数据导入

  a.将D:\dc.dmp中导入到数据库中

   imp user/[email protected]   file=d:\dc.dmp ignore=y

   ignore=y 表示忽略错误  因为有的表已经存在,然后它就报错,对该表就不进行导入。


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

   imp user/[email protected]   file=d:\dc.dmp  tables=(user_id)

 

  

本文出自 “11290766” 博客,请务必保留此出处http://rylan.blog.51cto.com/11290766/1867764

以上是关于Oracle数据导入导出基本操作示例的主要内容,如果未能解决你的问题,请参考以下文章

Oracle导出/导入数据

Oracle 数据导入导出操作 (转)

oracle 基本简单操作【cmd 导入导出dmp数据库】

oracle数据库的导入导出

oracle 导入数据文件用啥工具

Oracle exp/imp数据导入导出工具基本用法