Oracle数据库迁移几种方式

日期: 2008-06-12 来源:TechTarget中国

  我们常需要对数据进行迁移,迁移到更加高级的主机上、迁移到远程的机房上、迁移到不同的平台下……


  一、exp/imp:


  这也算是最常用最简单的方法了,一般是基于应用的owner级做导出导入。


  操作方法为:在新库建立好owner和表空间,停老库的应用,在老库做exp user/pwd owner=XXX file=exp_xxx.dmp log=exp_xxx.log buffer=6000000,传dmp文件到新库,在新库做imp user/pwd fromuser=XXX touser=XXX file=exp_xxx.dmp log=imp_xxx.log ignore=y.


  优缺点:优点是可以跨平台使用;缺点是停机时间长,停机时间为从exp到网络传输到新库,再加上imp的时间。


  二、存储迁移:


  这种情况下,数据文件、控制文件、日志文件、spfile都在存储上(一般情况下是裸设备),我们可以直接把存储挂到新机器上,然后在新机器上启动数据库。


  操作方法:将老库的pfile(因为里面有指向裸设备的spfile链接),tnsnames.ora,listener.ora,密码文件传到新库的对应位置。将存储切至新机,或者用文件拷贝或dd的方式复制数据文件,启动数据库。


  优缺点:优点是该迁移方式非常简单,主要的工作是主机工程师的工作,dba只需配合即可,停机时间为当库、切存储、起库的时间。缺点是要求新老库都是同一平台,是相同的数据库版本。


  三、利用data guard迁移:


  用dg我们不仅可以用来做容灾,物理的dg我们还可以作为迁移的方式。


  操作方法:可见http://www.oracleblog.cn/study-note/dg-created-by-rman/或者http://www.oracleblog.cn/study-note/create-dg-by-rman-one-datafile-by-one-datafile/或者其他相关网文。注意switch over之后,可以将dg拆掉,去掉log_archive_dest_2、FAL_SERVER、FAL_CLIENT、standby_file_management参数。另外还要注意如果用rman做dg,注意手工添加tempfile。


  优缺点:优点是停机时间短,停机时间为switch over的时间。缺点:主机必须双份、存储必须双份。


  四、用rman做迁移:


  rman比较适合于跨文件系统的迁移,如同平台下的不同文件系统。


  操作方法:


  1.停第三方的归档备份,如legato或dp


  2.backup数据库:


在一次周末的课程试验中,频繁的看到 Data file init write 等待事件。


  在这里做一点记录说明,以下是来自跟踪文件的记录信息:


  




WAIT #2: nam=’Data file init write’ ela= 13031 count=1 intr=256 timeout=-1 obj#=51706 tim=6068271611 
  WAIT #2: nam=’Data file init write’ ela= 118163 count=1 intr=256 timeout=-1 obj#=51706 tim=6068392491 
  WAIT #2: nam=’Data file init write’ ela= 94036 count=1 intr=256 timeout=-1 obj#=51706 tim=6068490286 
  WAIT #2: nam=’Data file init write’ ela= 52412 count=1 intr=256 timeout=-1 obj#=51706 tim=6068545333 
  WAIT #2: nam=’Data file init write’ ela= 4 count=0 intr=32 timeout=2147483647 obj#=51706 tim=6068545596 
  WAIT #2: nam=’Data file init write’ ela= 26 count=1 intr=32 timeout=2147483647 obj#=51706 tim=6068545641 
  WAIT #2: nam=’Data file init write’ ela= 101743 count=1 intr=256 timeout=-1 obj#=51706 tim=6068648487 
  WAIT #2: nam=’Data file init write’ ela= 44854 count=1 intr=256 timeout=-1 obj#=51706 tim=6068694281 
  WAIT #2: nam=’Data file init write’ ela= 52841 count=1 intr=256 timeout=-1 obj#=51706 tim=6068748054 
  WAIT #2: nam=’Data file init write’ ela= 48984 count=1 intr=256 timeout=-1 obj#=51706 tim=6068798310 
  WAIT #2: nam=’Data file init write’ ela= 3 count=0 intr=32 timeout=2147483647 obj#=51706 tim=6068798365 
  WAIT #2: nam=’Data file init write’ ela= 26 count=1 intr=32 timeout=2147483647 obj#=51706 tim=6068798409 
  WAIT #2: nam=’Data file init write’ ela= 101899 count=1 intr=256 timeout=-1 obj#=51706 tim=6068900931 
  WAIT #2: nam=’Data file init write’ ela= 21 count=-1 intr=32 timeout=2147483647 obj#=51706 tim=6068901053 

  测试数据库是Oracle10g 10.2.0.3,实际上这个等待事件也是从Oracle 10g开始引入的,用来标识表空间或数据文件扩展时的等待。


  Oracle 需要将系统块格式化为Oracle数据块,然后才能提供数据库使用。


  在这个流程处理中,Oracle经过如下三个步骤:


  1.扩展数据文件


  select file# from file$ where ts#=:1


  2.更新用户空间限额


  update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and user#=:2


  3.扩展数据段


  update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts#=:1 and file#=:2 and block#=:3


  这就是Oracle10g中空间扩展时内部流程。

我们一直都在努力坚持原创.......请不要一声不吭,就悄悄拿走。

我原创,你原创,我们的内容世界才会更加精彩!

【所有原创内容版权均属TechTarget,欢迎大家转发分享。但未经授权,严禁任何媒体(平面媒体、网络媒体、自媒体等)以及微信公众号复制、转载、摘编或以其他方式进行使用。】

微信公众号

TechTarget微信公众号二维码

TechTarget

官方微博

TechTarget中国官方微博二维码

TechTarget中国

电子邮件地址不会被公开。 必填项已用*标注

敬请读者发表评论,本站保留删除与本文无关和不雅评论的权力。

相关推荐