oracle如何导入dmp文件并覆盖原有数据

坚强是说给别人听的谎言 提交于 2019-12-01 02:28:53
  1. 重复导入已存在的数据库,有以下两种导入方法IMP和IMPDP;

  2. 2

    IMP导入的时候 :如果已经存在此表, 会告诉你无法创建此表,因为表已经存在。同时使用参数 full=y ignore=y 那就是全部导入,把dmp里的所有数据插入到表里面。换句话说会有重复,如果该表有主键,重复的会因为违反约束,导入不成功,但不重复的能够进去,这种情况是追加覆盖进去了。

  3. 3

    数据备份,使用命令:

    exp user/user file=d:\user.dmp full=y

    恢复时,使用命令:

    imp user/user FILE=d:\user.dmp fromuser=user touser=user full=y ignore=y

  4. 4

    IMPDP导入的时候 :用参数table_exists_action=replace 进行删除后覆盖;

    table_exists_action选项:{skip 是如果已存在表,则跳过并处理下一个对象;append是为表增加数据;truncate是截断表,然后为其增加新数据;replace是删除已存在表,重新建表并追加数据}

  5. 5

    数据备份,使用命令:

    expdp user/user directory=dump_dir dumpfile=schema.dmp logfile=schema.log schemas=user job_name=exp_user_schema恢复时,使用命令:impdp user/user directory=dump_dir dumpfile=schema.dmp logfile=schema.log  table_exists_action=replace schemas=user content=all job_name=imp_schema 

  6.  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!