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 -> Re: How restore hotline backup ?

Re: How restore hotline backup ?

From: John P. Higgins <jh33378nospam_at_deere.com>
Date: Sun, 26 Apr 1998 22:33:13 -0500
Message-ID: <3543FC79.7EE8@deere.com>


This is NOT a recoverable hot backup.

What you need is to:

	ALTER TABLESPACE ... BEGIN BACKUP;
	cp datafile1 /backup/datafile1
	ALTER TABLSSPACE ... END BACKUP;
	.
	.
	.	
	ALTER TABLESPACE ... BEGIN BACKUP;
	cp dafileN /backup/datafileN
	ALTER TABLESPACE ... END BACKUP;

	This requires ARCHIVELOG mode.

Bors wrote:
>
> My greeting to all.
> If ORACLE diggers answer me.
>
> I have a hotline( on working database ) backup, this backup was done using
> following commands:
> ALTER TABLESPACE ... READ ONLY;
> ...
> ALTER TABLESPACE ... READ ONLY;
>
> cp datafile1 /backup/datafile
> ...
> cp datafileN /backup/datafileN
>
> And only tablespace that not turned to read only is SYSTEM. In process of
> copying no one write or read data. And no redo information was done( my
> database was running in NOARCHIVELOG mode ).
> After this i have try to restore database using following:
> CREATE CONTROLFILE REUSE SET DATABASE "...." RESETLOGS NOARCHIVELOG
> ....
> DATAFILE
> '/backup/system01.dbf',
> ....
> '/backup/data10.dbf';
>
> Created OK, but when i execute RECOVER DATABASE USING BACKUP CONTROLFILE
> Recovering process will fail, it asks for some redo files.
>
> And my questing. Is possibly open database to read only( for reading data )
> ignore some inconsistence in system datafiles( no data changes from start to
> finish backup process ). I assume that must be something............
>
> Thank for advance.
>
> PS: Please reply to email too
>
> Bors/
Received on Sun Apr 26 1998 - 22:33:13 CDT

Original text of this message

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