sql >> Databáze >  >> RDS >> Oracle

Jak importovat sadu záloh Oracle 11g RMAN na nový databázový server?

Tento nástroj jsem nikdy nepoužil, ale pár minut googluji, možná vám to pomůže...

Přímý odkaz: Import RMAP

Here is the script I use to restore the database from the backup, (I always clean up the database before restoring it.)

* Startup nomout;
* Set dbid xxxxxxxx // This is the dbid of your database
* Run {
Set controlfile autobackup format for device type disk to ''; // e.g. '/ora101/oradata/TAR/%F'
Restore controlfile from autobackup;
}
* Alter database mount; // can't restore without the database mounted
* Restore database; // can't run recover without first restore
* Recover database; // if the backup was from incremental, RMAN will try to apply all the logfiles generated after the backup was started.
* Alter database open resetlogs; 

// UPRAVIT:Zde je další odkaz z OraFaq .



  1. INFORMATION_SCHEMA vs sysobjects

  2. Přidejte chybějící měsíc do výsledku s hodnotami z předchozího měsíce

  3. Nahrazení textu ve sloupci BLOB

  4. blokování přihlášení po X neúspěšných pokusech