- 论坛徽章:
- 0
|
我发现有resetlog open啊。
现在的错误又是:
Recovery Manager: Release 9.2.0.4.0 - Production
Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
connected to target database: RCA (not mounted)
connected to recovery catalog database
RMAN> shutdown immediate;
2> startup nomount;
3> restore controlfile;
4> alter database mount;
5> run
6> {
7> allocate channel d1 device type disk;
8> allocate channel d2 device type disk;
9> allocate channel d3 device type disk;
10> allocate channel d4 device type disk;
11> set until scn 5176195;
12> restore database check readonly;
13> recover database noredo;
14> recover database;
15> release channel d4;
16> release channel d3;
17> release channel d2;
18> release channel d1;
19> }
20> alter database open resetlogs;
21>
Oracle instance shut down
connected to target database (not started)
Oracle instance started
Total System Global Area 875108188 bytes
Fixed Size 452444 bytes
Variable Size 201326592 bytes
Database Buffers 671088640 bytes
Redo Buffers 2240512 bytes
Starting restore at 27-JUL-06
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=13 devtype=DISK
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 07/27/2006 09:58:53
RMAN-06026: some targets not found - aborting restore
RMAN-06024: no backup or copy of the controlfile found to restore
Recovery Manager complete.
Rebuild temporary tablespace
CREATE TEMPORARY TABLESPACE "TEMPDBA" TEMPFILE '/data2/oradata2/GCOTA/TEMPDBA.dbf' SIZE 10M
*
ERROR at line 1:
ORA-01109: database not open
请问resetlog是重置redo log吗? |
|