欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

oracle中exp,imp的使用详解

程序员文章站 2022-10-26 11:57:56
基本语法和实例:      1、exp:       有三种主要的方式(完全...

基本语法和实例: 
    1、exp:
      有三种主要的方式(完全、用户、表)
      1、完全:
          exp system/manager buffer=64000 file=c:\full.dmp full=y
          如果要执行完全导出,必须具有特殊的权限
      2、用户模式:
          exp sonic/sonic    buffer=64000 file=c:\sonic.dmp owner=sonic
          这样用户sonic的所有对象被输出到文件中。
      3、表模式:
          exp sonic/sonic    buffer=64000 file=c:\sonic.dmp owner=sonic tables=(sonic)
          这样用户sonic的表sonic就被导出
    2、imp:
      具有三种模式(完全、用户、表)
      1、完全:
          imp system/manager buffer=64000 file=c:\full.dmp full=y
      2、用户模式:
          imp sonic/sonic    buffer=64000 file=c:\sonic.dmp fromuser=sonic touser=sonic
          这样用户sonic的所有对象被导入到文件中。必须指定fromuser、touser参数,这样才能导入数据。
      3、表模式:
          exp sonic/sonic    buffer=64000 file=c:\sonic.dmp owner=sonic tables=(sonic)
          这样用户sonic的表sonic就被导入。

oracle数据库有两类备份方法。第一类为物理备份,该方法实现数据库的完整恢复,但数据库必须运行在归挡模式下(业务数据库在非归挡模式下运行),且需要极大的外部存储设备,例如磁带库;第二类备份方式为逻辑备份,业务数据库采用此种方式,此方法不需要数据库运行在归挡模式下,不但备份简单,而且可以不需要外部存储设备。
  
  数据库逻辑备份方法
  
  oracle数据库的逻辑备份分为三种模式:表备份、用户备份和完全备份。
  
  表模式
  
  备份某个用户模式下指定的对象(表)。业务数据库通常采用这种备份方式。
  
  若备份到本地文件,使用如下命令:
  
  exp icdmain/icd rows=y indexes=n compress=n buffer=65536
  feedback=100000 volsize=0
  file=exp_icdmain_csd_yyyymmdd.dmp
  log=exp_icdmain_csd_yyyymmdd.log
  tables=icdmain.commoninformation,icdmain.serviceinfo,icdmain.dealinfo
  
  若直接备份到磁带设备,使用如下命令:
  exp icdmain/icd rows=y indexes=n compress=n buffer=65536
  feedback=100000 volsize=0
  file=/dev/rmt0
  log=exp_icdmain_csd_yyyymmdd.log
  tables=icdmain.commoninformation,icdmain.serviceinfo,icdmain.dealinfo
  
  注:在磁盘空间允许的情况下,应先备份到本地服务器,然后再拷贝到磁带。出于速度方面的考虑,尽量不要直接备份到磁带设备。
  
  用户模式
  
  备份某个用户模式下的所有对象。业务数据库通常采用这种备份方式。
  若备份到本地文件,使用如下命令:
  exp icdmain/icd owner=icdmain rows=y indexes=n compress=n buffer=65536
  feedback=100000 volsize=0
  file=exp_icdmain_yyyymmdd.dmp
  log=exp_icdmain_yyyymmdd.log
  若直接备份到磁带设备,使用如下命令:
  exp icdmain/icd owner=icdmain rows=y indexes=n compress=n buffer=65536
  feedback=100000 volsize=0
  file=/dev/rmt0
  log=exp_icdmain_yyyymmdd.log
  注:如果磁盘有空间,建议备份到磁盘,然后再拷贝到磁带。如果数据库数据量较小,可采用这种办法备份。
 
  以下为详细的导入导出实例:

  一、数据导出:
 
  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 filed1 like '00%'\"
 
  上面是常用的导出,对于压缩我不太在意,用winzip把dmp文件可以很好的压缩。
 
  不过在上面命令后面 加上 compress=y  就可以了
 
  二、数据的导入
 
   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)
 
  基本上上面的导入导出够用了。不少情况我是将表彻底删除,然后导入。
 
  注意:
 
  你要有足够的权限,权限不够它会提示你。
 
  数据库时可以连上的。可以用tnsping test 来获得数据库test能否连上。

oracleimp/exp命令使用

举例导出数据库服务abc,用户user,密码psd下的table1,table2,table3表到d:\data目录下,导出文件名为test.dmp,语句为:

  exp user/psd@adc file=d:\data\test.dmp tables=(table1,table2,table3) 。

  将上述文件恢复的语句为:

  exp user/psd@adc full=y file=d:\data\test.dmp.注意:如果将备份文件中的所有表恢复,需要加上full=y。如果只须只需要恢复table1,则语句为:

  exp user/psd@adc file=d:\data\test.dmp tables=table1。即必须指明倒入那些信息,要么全部要么部分表。

  以下是摘抄的别人的经验。

  执行环境:可以在sqlplus.exe或者dos(命令行)中执行,dos中可以执行时由于 在oracle 8i 中 安装目录\ora81\bin被设置为全局路径,该目录下有exp.exe与imp.exe文件被用来执行导入导出。

  oracle用java编写,sqlplus.exe、exp.exe、imp.exe这两个文件有可能是被包装后的类文件。

  sqlplus.exe调用exp.exe、imp.exe所包裹的类,完成导入导出功能。

  下面介绍的是导入导出的实例。

  数据导出:

  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将数据库中的表inner_notify、notify_staff_relat导出

  exp aichannel/aichannel@testdb2 file= d:\data\newsmgnt.dmp tables=(inner_notify,notify_staff_relat)

  4将数据库中的表table1中的字段filed1以"00"打头的数据导出

  exp system/manager@test file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"

  上面是常用的导出,对于压缩,既用winzip把dmp文件可以很好的压缩。

  也可以在上面命令后面 加上 compress=y 来实现。

  数据的导入

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

  imp system/manager@test file=d:\daochu.dmp imp aichannel/aichannel@hust full=y file=file= d:\data\newsmgnt.dmp ignore=y上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。

  在后面加上 ignore=y 就可以了。

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

  基本上上面的导入导出够用了。不少情况要先是将表彻底删除,然后导入。

注意:

  操作者要有足够的权限,权限不够它会提示。

  数据库时可以连上的。可以用tnsping test 来获得数据库test能否连上。

  附录一:

  给用户增加导入数据权限的操作

  第一,启动sql*puls第二,以system/manager登陆第三,create user 用户名 identified by 密码 (如果已经创建过用户,这步可以省略)

  第四,grant create user,drop user,alter user ,create any view , drop any view,exp_full_database,imp_full_database, dba,connect,resource,create session to 用户名字第五, 运行-cmd-进入dmp文件所在的目录, imp userid=system/manager full=y file=*.dmp或者 imp userid=system/manager full=y file=filename.dmp

  执行示例:

  f:\work\oracle_data\backup>imp userid=test/test full=y file=inner_notify.dmp

  屏幕显示

  import: release 8.1.7.0.0 - production on 星期四 2月 16 16:50:05 2006 (c) copyright 2000 oracle corporation. all rights reserved.

  连接到: oracle8i enterprise edition release 8.1.7.0.0 - production

  with the partitioning option

  jserver release 8.1.7.0.0 - production

  经由常规路径导出由export:v08.01.07创建的文件

  已经完成zhs16gbk字符集和zhs16gbk nchar字符集中的导入

  导出服务器使用utf8 nchar字符集(可能的ncharset转换)

  . 正在将aichannel的对象导入到 aichannel . . 正在导入表   "inner_notify"   4行被导入准备启用约束条件...成功终止导入,但出现警告。

  附录二:

  oracle 不允许直接改变表的拥有者, 利用export/import可以达到这一目的.先建立import9.par,然后,使用时命令如下:imp parfile=/filepath/import9.par例 import9.par 内容如下:

  fromuser=tgpms

  touser=tgpms2   (注:把表的拥有者由fromuser改为touser,fromuser和touser的用户可以不同)

  rows=y

  indexes=y

  grants=y

  constraints=y

  buffer=409600

  file==/backup/ctgpc_20030623.dmp log==/backup/import_20030623.log