Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Jak zaimportować zestaw kopii zapasowych Oracle 11g RMAN na nowy serwer bazy danych?

Nigdy nie używałem tego narzędzia, ale wygoogluję kilka minut, może to ci pomoże...

Bezpośredni link: Importowanie 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; 

// EDYCJA:Oto kolejny link z OraFaq .



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Ujmowanie nazw kolumn w podwójnych cudzysłowach za pomocą polecenia CREATE w Oracle nie działa poprawnie. Czemu?

  2. Pobierz listę prywatnych procedur/funkcji z treści pakietu

  3. Jak wstawić/zaktualizować większy rozmiar danych w tabelach Oracle?

  4. Zaktualizuj za pomocą wyzwalacza po wstawieniu na tym samym stole

  5. Co robi COMMIT?