非归档下oracle的备份和恢复

Jun 07, 2016 pm 05:41 PM
oracle

数据库处于非归档状态,其联机日志循环覆盖使用,这意味着如果数据库需要进行介质恢复应用相关归档,又由于非归档导致归档文件不存在,那么此时数据库只能执行..

 

        数据库处于非归档状态,其联机日志循环覆盖使用,这意味着如果数据库需要进行介质恢复应用相关归档,又由于非归档导致归档文件不存在,那么此时数据库只能执行基于取消的恢复,回退整个数据库到上一次全备份状态。或者修改数据文件头部信息,来规避缺失归档。但不管怎么样都会丢失数据。

 

 

下面介绍非归档模式下几种常见故障处理方法。

 

 

一 非归档下的常用备份和恢复方法:

 

如何备份

Backing Up a Database in NOARCHIVELOG Mode You can only backup a database in NOARCHIVELOG mode when the database is closed and in a consistent state.

 

1 shutdown immediate

2 startup mount

3 backup database

 

如何恢复

注意 和归档模式下的恢复有如下不同点:

 

1 Only consistent backups can be used in restoring a database in NOARCHIVELOG mode.

 

2 Media recovery is not possible because no archived redo logs exist.

 

恢复步骤如下:

1 startup force mount;

2 restore database;

3 recover database until cancel;

4 alter database open resetlogs;

 

举例如下:

备份

SQL> archive log list;

Database log mode              No Archive Mode

Automatic archival             Disabled

Archive destination            /oracle/archive

Oldest online log sequence     1

Current log sequence           2

RMAN> shutdown immediate;

using target database control file instead of recovery catalog

database closed

database dismounted

Oracle instance shut down

 

RMAN> startup mount;

 

connected to target database (not started)

Oracle instance started

database mounted

 

Total System Global Area    1252663296 bytes

 

Fixed Size                     2226072 bytes

Variable Size               1006635112 bytes

Database Buffers             234881024 bytes

Redo Buffers                   8921088 bytes

 

RMAN> backup database;

 

Starting backup at 2013-02-03 13:26:36

allocated channel: ORA_DISK_1

channel ORA_DISK_1: SID=63 device type=DISK

allocated channel: ORA_DISK_2

channel ORA_DISK_2: SID=129 device type=DISK

channel ORA_DISK_1: starting full datafile backup set

channel ORA_DISK_1: specifying datafile(s) in backup set

input datafile file number=00004 name=/backup/users01.dbf

input datafile file number=00003 name=/oracle/CRM/undotbs3.dbf

input datafile file number=00006 name=/oracle/CRM/erp.dbf

input datafile file number=00007 name=/oracle/CRM/user01.dbf

channel ORA_DISK_1: starting piece 1 at 2013-02-03 13:26:38

channel ORA_DISK_2: starting full datafile backup set

channel ORA_DISK_2: specifying datafile(s) in backup set

input datafile file number=00001 name=/oracle/CRM/system01.dbf

input datafile file number=00002 name=/oracle/CRM/sysaux01.dbf

input datafile file number=00005 name=/oracle/CRM/pos.dbf

channel ORA_DISK_2: starting piece 1 at 2013-02-03 13:26:39

channel ORA_DISK_1: finished piece 1 at 2013-02-03 13:29:36

piece handle=/backup/20130203_fro11v4d_1_1 tag=TAG20130203T132637 comment=NONE

channel ORA_DISK_1: backup set complete, elapsed time: 00:02:59

channel ORA_DISK_2: finished piece 1 at 2013-02-03 13:29:38

piece handle=/backup/20130203_fso11v4e_1_1 tag=TAG20130203T132637 comment=NONE

channel ORA_DISK_2: backup set complete, elapsed time: 00:02:59

Finished backup at 2013-02-03 13:29:38

 

Starting Control File and SPFILE Autobackup at 2013-02-03 13:29:38

piece handle=/backup/c-3599153036-20130203-00 comment=NONE

Finished Control File and SPFILE Autobackup at 2013-02-03 13:29:41

 

恢复

 

RMAN> startup force mount;

 

Oracle instance started

database mounted

 

Total System Global Area    1252663296 bytes

 

Fixed Size                     2226072 bytes

Variable Size               1006635112 bytes

Database Buffers             234881024 bytes

Redo Buffers                   8921088 bytes

 

RMAN> restore database;

 

Starting restore at 2013-02-03 16:13:04

allocated channel: ORA_DISK_1

channel ORA_DISK_1: SID=63 device type=DISK

allocated channel: ORA_DISK_2

channel ORA_DISK_2: SID=129 device type=DISK

 

channel ORA_DISK_1: starting datafile backup set restore

channel ORA_DISK_1: specifying datafile(s) to restore from backup set

channel ORA_DISK_1: restoring datafile 00003 to /oracle/CRM/undotbs3.dbf

channel ORA_DISK_1: restoring datafile 00004 to /backup/users01.dbf

channel ORA_DISK_1: restoring datafile 00006 to /oracle/CRM/erp.dbf

channel ORA_DISK_1: restoring datafile 00007 to /oracle/CRM/user01.dbf

channel ORA_DISK_1: reading from backup piece /backup/20130203_fro11v4d_1_1

channel ORA_DISK_2: starting datafile backup set restore

channel ORA_DISK_2: specifying datafile(s) to restore from backup set

channel ORA_DISK_2: restoring datafile 00001 to /oracle/CRM/system01.dbf

channel ORA_DISK_2: restoring datafile 00002 to /oracle/CRM/sysaux01.dbf

channel ORA_DISK_2: restoring datafile 00005 to /oracle/CRM/pos.dbf

channel ORA_DISK_2: reading from backup piece /backup/20130203_fso11v4e_1_1

channel ORA_DISK_1: piece handle=/backup/20130203_fro11v4d_1_1 tag=TAG20130203T132637

channel ORA_DISK_1: restored backup piece 1

channel ORA_DISK_1: restore complete, elapsed time: 00:04:09

channel ORA_DISK_2: piece handle=/backup/20130203_fso11v4e_1_1 tag=TAG20130203T132637

channel ORA_DISK_2: restored backup piece 1

channel ORA_DISK_2: restore complete, elapsed time: 00:04:11

Finished restore at 2013-02-03 16:17:17

 

RMAN> host;

 

[oracle@oracle ~]$ sqlplus / as sysdba

 

SQL*Plus: Release 11.2.0.2.0 Production on Sun Feb 3 16:27:12 2013

 

Copyright (c) 1982, 2010, Oracle. All rights reserved.

 

 

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

 

SQL> recover database until cancel;

ORA-00279: change 2942346 generated at 02/03/2013 13:26:11 needed for thread 1

ORA-00289: suggestion : /oracle/archive/1_2_806264057.dbf

ORA-00280: change 2942346 for thread 1 is in sequence #2

 

 

Specify log: {=suggested | filename | AUTO | CANCEL}

cancel

Media recovery cancelled.

 

SQL> alter database open resetlogs;

 

Database altered.

 

SQL> select group#,archived,sequence#,status from v$Log;

 

    GROUP# ARC SEQUENCE# STATUS

---------- --- ---------- ----------------

         1 NO           1 CURRENT

         2 YES          0 UNUSED

         3 YES          0 UNUSED

         4 YES          0 UNUSED

 

 

二 非归档无备份,单个文件丢失造成数据库无法打开

第一种方法:

SQL> startup ;

ORACLE instance started.

 

Total System Global Area 1252663296 bytes

Fixed Size                  2226072 bytes

Variable Size            1006635112 bytes

Database Buffers          234881024 bytes

Redo Buffers                8921088 bytes

Database mounted.

ORA-01157: cannot identify/lock data file 8 - see DBWR trace file

ORA-01110: data file 8: '/oracle/CRM/test.dbf'

 

 

SQL> alter database datafile 8 offline drop;

 

Database altered.

 

SQL> alter database open;

 

Database altered.

 

SQL> alter database create datafile '/oracle/CRM/test.dbf';

 

Database altered.

 

SQL> select hxfil,fhscn,fhrba_seq from x$kcvfh;

 

     HXFIL FHSCN             FHRBA_SEQ

---------- ---------------- ----------

         1 3078640                  37

         2 3078640                  37

         3 3078640                  37

         4 3078640                  37

         5 3078640                  37

         6 3078640                  37

         7 3078640                  37

         8 3077425                  31

 

8 rows selected.

 

SQL> select group#,archived,sequence#,status from v$log;

 

    GROUP# ARC SEQUENCE# STATUS

---------- --- ---------- ----------------

         1 NO          37 CURRENT

         2 NO          34 INACTIVE

         3 NO          35 INACTIVE

         4 NO          36 INACTIVE

由于是非归档则31、32、33号归档丢失,完全恢复已经不可能,只能执行基于取消的恢复,回退整个数据库。

SQL> startup force mount;

ORACLE instance started.

 

Total System Global Area 1252663296 bytes

Fixed Size                  2226072 bytes

Variable Size            1006635112 bytes

Database Buffers          234881024 bytes

Redo Buffers                8921088 bytes

Database mounted.

 

SQL> recover database until cancel;

ORA-00279: change 3078640 generated at 02/20/2013 16:44:47 needed for thread 1

ORA-00289: suggestion : /oracle/archive/1_37_806501358.dbf

ORA-00280: change 3078640 for thread 1 is in sequence #37

 

Specify log: {=suggested | filename | AUTO | CANCEL}

cancel

ORA-10879: error signaled in parallel recovery slave

ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below

ORA-01194: file 1 needs more recovery to be consistent

ORA-01110: data file 1: '/oracle/CRM/system01.dbf

 

 

SQL> alter database open resetlogs;

alter database open resetlogs

*

ERROR at line 1:

ORA-01194: file 1 needs more recovery to be consistent

ORA-01110: data file 1: '/oracle/CRM/system01.dbf'

 

 

SQL> alter system set "_allow_resetlogs_corruption"=true scope=spfile;

 

System altered.

 

SQL> startup force mount;

ORACLE instance started.

 

Total System Global Area 1252663296 bytes

Fixed Size                  2226072 bytes

Variable Size            1006635112 bytes

Database Buffers          234881024 bytes

Redo Buffers                8921088 bytes

Database mounted.

 

SQL> alter database open resetlogs;

alter database open resetlogs

*

ERROR at line 1:

ORA-01092: ORACLE instance terminated. Disconnection forced

ORA-00600: internal error code, arguments: [2662], [0], [3078648], [0],

[3078665], [4194432], [], [], [], [], [], []

Process ID: 5678

Session ID: 191 Serial number: 3

这里通过重启规避ora-600 [2662]错误

 

SQL> startup;

ORACLE instance started.

 

Total System Global Area 1252663296 bytes

Fixed Size                  2226072 bytes

Variable Size            1006635112 bytes

Database Buffers          234881024 bytes

Redo Buffers                8921088 bytes

Database mounted.

Database opened.

 

第二种方法

SQL> startup

ORACLE instance started.

 

Total System Global Area 1252663296 bytes

Fixed Size                  2226072 bytes

Variable Size            1006635112 bytes

Database Buffers          234881024 bytes

Redo Buffers                8921088 bytes

Database mounted.

ORA-01157: cannot identify/lock data file 8 - see DBWR trace file

ORA-01110: data file 8: '/oracle/CRM/test.dbf'

 

 

SQL> alter database create datafile '/oracle/CRM/test.dbf';

 

Database altered.

注意,当我们用 alter database create datafile 创建数据文件时,香港空间,数据文件头部scn以及rba.seq号均取自于该数据文件创建时控制文件中记录的scn和rba.seq号,如下:

 DATA FILE #8:

 name #14: /oracle/CRM/test.dbf

 Creation Checkpointed at scn: 0x0000.002d4053 02/03/2013 17:02:59

 thread:1 rba:(0x2.20d.10)

 0x2d4053准换为10进制为2965587

 rba:(0x2.20d.10)则表示seq号为2.块525.偏移量10

SQL> select hxfil,fhscn,fhrba_seq,fhrba_bno from x$kcvfh;

 

     HXFIL FHSCN             FHRBA_SEQ FHRBA_BNO

---------- ---------------- ---------- ----------

このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

Video Face Swap

Video Face Swap

完全無料の AI 顔交換ツールを使用して、あらゆるビデオの顔を簡単に交換できます。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)

オラクルを開けない場合はどうすればよいですか オラクルを開けない場合はどうすればよいですか Apr 11, 2025 pm 10:06 PM

Oracleのソリューションを開くことはできません。1。データベースサービスを開始します。 2。リスナーを開始します。 3.ポートの競合を確認します。 4.環境変数を正しく設定します。 5.ファイアウォールまたはウイルス対策ソフトウェアが接続をブロックしないことを確認してください。 6.サーバーが閉じているかどうかを確認します。 7. RMANを使用して破損したファイルを回復します。 8。TNSサービス名が正しいかどうかを確認します。 9.ネットワーク接続を確認します。 10。Oracleソフトウェアを再インストールします。

Oracle Cursorを閉じる問題を解決する方法 Oracle Cursorを閉じる問題を解決する方法 Apr 11, 2025 pm 10:18 PM

Oracle Cursorの閉鎖問題を解決する方法には、次のものが含まれます。 Scopeが終了した後に自動的に閉じるように、for update句のカーソルを宣言します。使用句のカーソルを宣言して、関連するPL/SQL変数が閉じられたときに自動的に閉じるようにします。例外処理を使用して、例外の状況でカーソルが閉じていることを確認します。接続プールを使用して、カーソルを自動的に閉じます。自動送信を無効にし、カーソルの閉鎖を遅延させます。

Oracle Loopでカーソルを作成する方法 Oracle Loopでカーソルを作成する方法 Apr 12, 2025 am 06:18 AM

Oracleでは、forループループは動的にカーソルを作成できます。手順は次のとおりです。1。カーソルタイプを定義します。 2。ループを作成します。 3.カーソルを動的に作成します。 4。カーソルを実行します。 5。カーソルを閉じます。例:カーソルをサイクルごとに作成して、上位10人の従業員の名前と給与を表示できます。

HDFSでCentosを構成するために必要な手順 HDFSでCentosを構成するために必要な手順 Apr 14, 2025 pm 06:42 PM

CENTOSシステムにHadoop分散ファイルシステム(HDFS)を構築するには、複数のステップが必要です。この記事では、簡単な構成ガイドを提供します。 1.初期段階でJDKをインストールする準備:すべてのノードにJavadevelopmentKit(JDK)をインストールすると、バージョンはHadoopと互換性がある必要があります。インストールパッケージは、Oracleの公式Webサイトからダウンロードできます。環境変数構成: /etc /プロファイルファイルを編集し、JavaおよびHadoop環境変数を設定して、システムがJDKとHadoopのインストールパスを見つけることができるようにします。 2。セキュリティ構成:SSHパスワードなしログインSSHキーを生成する:各ノードでSSH-KeyGenコマンドを使用する

Oracleログがいっぱいの場合はどうすればよいですか Oracleログがいっぱいの場合はどうすればよいですか Apr 12, 2025 am 06:09 AM

Oracleログファイルがいっぱいになると、次のソリューションを採用できます。1)古いログファイルをクリーンします。 2)ログファイルサイズを増やします。 3)ログファイルグループを増やします。 4)自動ログ管理をセットアップします。 5)データベースを再発射化します。ソリューションを実装する前に、データの損失を防ぐためにデータベースをバックアップすることをお勧めします。

ビジネスの世界におけるオラクルの役割 ビジネスの世界におけるオラクルの役割 Apr 23, 2025 am 12:01 AM

Oracleはデータベース会社だけでなく、クラウドコンピューティングとERPシステムのリーダーでもあります。 1。Oracleは、データベースからクラウドサービスおよびERPシステムへの包括的なソリューションを提供します。 2。Oraclecloudは、AWSとAzureに挑戦し、IAAS、PAAS、SAASサービスを提供します。 3. e-businesssuiteやfusionApplicationsなどのOracleのERPシステムは、企業がオペレーションを最適化するのに役立ちます。

Oracleデータベースを停止する方法 Oracleデータベースを停止する方法 Apr 12, 2025 am 06:12 AM

Oracleデータベースを停止するには、次の手順を実行します。1。データベースに接続します。 2。すぐにシャットダウンします。 3.シャットダウンは完全に中止します。

Oracleビューをエクスポートする方法 Oracleビューをエクスポートする方法 Apr 12, 2025 am 06:15 AM

Oracleビューは、Exputility:Oracleデータベースにログインしてエクスポートできます。 Expユーティリティを開始し、ビュー名とエクスポートディレクトリを指定します。ターゲットモード、ファイル形式、テーブルスペースなどのエクスポートパラメーターを入力します。エクスポートを開始します。 IMPDPユーティリティを使用してエクスポートを確認します。

See all articles