Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Problem creating database copy from hot backup

Problem creating database copy from hot backup

From: Michael Spragg <gbvguy_at_yahoo.com>
Date: 26 Feb 2003 09:37:48 -0800
Message-ID: <e315eb03.0302260937.5bf5080@posting.google.com>


I am trying to create a copy of a 8.1.7 production database to a test machine using hot backups. I do the following steps:

	STARTUP NOMOUNT
	CREATE CONTROLFILE SET DATABASE "new_dbname" RESETLOGS NOARCHIVELOG
	    MAXLOGFILES 32
	    MAXLOGMEMBERS 2
	    MAXDATAFILES 33
	    MAXINSTANCES 8
	    MAXLOGHISTORY 908
	LOGFILE
	  ... List redo logs modified to reflect new locations on test server
	DATAFILE
	  ...List datafiles modified to reflect new locations on test server
	CHARACTER SET WE8ISO8859P1;
	

        RECOVER DATABASE USING BACKUP CONTROLFILE UNTIL CANCEL;         

I have tried this at least a half dozen times on different databases and at this point I *always* get the same message in reference to the SYSTEM datafile:

  Specify log: {<RET>=suggested | filename | AUTO | CANCEL}   CANCEL
  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: '/u5/oradata/tcedm/system01.dbf'         

Am I missing a step or doing something wrong here? Is it possible to create a copy of a database this way?

Any help would be greatly appreciated.

Thanks - Mike Received on Wed Feb 26 2003 - 11:37:48 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US