zoukankan      html  css  js  c++  java
  • 没有备份、只有归档日志,如何恢复数据文件?


      系统环境:
      
      1、操作系统:Windows 2000 Server,机器内存128M
      2、数据库: Oracle 8i R2 (8.1.6) for NT 企业版
      3、安装路径:C:\ORACLE
      
      模拟现象:
      
      可通过重建数据文件来恢复,前提是归档日志文件保存完整
      
      先将数据库设置为归档模式
      
      SQL*Plus
      
      conn system/manager
      
      --创建实验表空间
      
      create tablespace test datafile
      
      ’c:\test.ora’ size 5M
      
      AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED
      
      default storage (initial 128K next 1M pctincrease 0)
      
      /
      
      --创建实验用户
      
       drop user test cascade;
      
      create user test identified by test default tablespace test;
      
      grant connect,resource to test;
      
      conn test/test
      
      create table a(a number);
      
      insert into a values(1);
      
      insert into a select * from a; --反复插入,达到100万条 BBS.bitsCN.com网管论坛
      
      commit;
      
      --关闭数据库
      
      SVRMGR> connect internal
      
      SVRMGR> alter system switch logfile; --强制归档
      
      SVRMGR> alter system switch logfile;
      
      SVRMGR> alter system switch logfile;
      
      SVRMGR> shutdown
      
      --操作系统下删除test.ora文件
      
      --重新启动数据库
      
      SVRMGR> connect / as sysdba  
      SVRMGR> startup
      
      这时,可以mount上,但无法打开,因为数据文件test.ora不存在,
      
      显示错误如下:
      
      ORA-01157: ????/?????? 8 - ??? DBWR ????
      
      ORA-01110: ???? 8: ’C:\TEST.ORA’
      
      SVRMGR> connect / as sysdba
      
      SVRMGR> startup mount
      
      SVRMGR> alter database create datafile ’c: est.ora’;
      
      SVRMGR> set autorecovery on
      
      SVRMGR> recover datafile ’c: est.ora’;
      
      SVRMGR> alter database open;
      
      conn test/test
      
      select count(*) from a; --数据又恢复到100万条 bitsCN_com
      
      --删除实验表空间
      
      connect / as sysdba  

      alter tablespace test offline;
      
      drop tablespace test INCLUDING CONTENTS;
      
      drop user test;
      
      --如果是非归档模式,也可以运用以上方法,
      
      --前提是:输入记录所占空间的大小不超过所有联机日志文件的大小
      
      --即:用联机日志文件来恢复
  • 相关阅读:
    win10安装.net 3.5无法启动服务,原因可能是已被禁用或与其相关联的设备没有启动
    配置SQL用户访问指定表,指定列
    GNU Gettext for Delphi, C++ and Kylix
    Delphi 7 中使用IdUDPServer1和IdUDPClient1控件实现通信检测
    xp不能安装NET Framework4.0解决方法
    基于TCP的Socket连接【Delphi版】
    牛客网优惠码
    GitHub基本操作
    xdb-test
    设置本地yum源
  • 原文地址:https://www.cnblogs.com/weixun/p/3273211.html
Copyright © 2011-2022 走看看