ORA-01152: file 1 was not restored from a sufficiently old backup [message #649142] |
Mon, 14 March 2016 22:04 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/0e53f5b1b1e2672540a43740d955bd65?s=64&d=mm&r=g) |
ady_the495
Messages: 5 Registered: March 2016 Location: indonesia
|
Junior Member |
|
|
HI,
I have problem with create backup server use cold backup.
With error i get when process backup like :
++++
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to an idle instance.
ORACLE instance shut down.
Connected to an idle instance.
ORACLE instance started.
Total System Global Area 1.1762E+11 bytes
Fixed Size 2173536 bytes
Variable Size 1.1274E+10 bytes
Database Buffers 1.0630E+11 bytes
Redo Buffers 42549248 bytes
Control file created.
alter database open resetlogs
*
ERROR at line 1:
ORA-01152: file 1 was not restored from a sufficiently old backup
ORA-01110: data file 1: '/d01/devadis01/system01.dbf'
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp01.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp04.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp03.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp07.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp08.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp09.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp10.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp05.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp06.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
alter tablespace TEMP1 add tempfile '/d01/devadis01/temp02.dbf' REUSE
*
ERROR at line 1:
ORA-01109: database not open
ALTER DATABASE RENAME GLOBAL_NAME TO "DEVEADIS.adis.co.id"
*
ERROR at line 1:
ORA-01109: database not open
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
Connected to an idle instance.
ORACLE instance started.
+++++
Script backup i use to create backup server is perl adcfgclone.pl dbTier
What I do wrong? Sad Im new on Oracel DB.
Sorry for my english
|
|
|
|
|
|
|
|
|
|
Re: ORA-01152: file 1 was not restored from a sufficiently old backup [message #649154 is a reply to message #649153] |
Tue, 15 March 2016 04:36 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
gazzag
Messages: 1119 Registered: November 2010 Location: Bedwas, UK
|
Senior Member |
|
|
RMAN can perform a cold (consistent) backup but if you want an O/S backup of the database, you will need to shut the database down and take copies of the files that are listed when you run the following query:
SELECT name FROM v$datafile
UNION
SELECT name FROM v$tempfile
UNION
SELECT name FROM v$controlfile
UNION
SELECT member FROM v$logfile;
|
|
|
Re: ORA-01152: file 1 was not restored from a sufficiently old backup [message #649156 is a reply to message #649150] |
Tue, 15 March 2016 04:44 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
John Watson
Messages: 8964 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
ady_the495 wrote on Tue, 15 March 2016 09:13Hi john,
Do you have a document for cold backup ?, if i want create development ebs instan.
Because i need the development instan for pacth.
Thanks,
Andri Cloning an EBS environment is more complicated than copying the database, you know. I can only repeat: what document are you following? Is it this,
Cloning Oracle E-Business Suite Release 12.2 with Rapid Clone (Doc ID 1383621.1)
and if not, why not?
|
|
|
|
|