Oracle
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Oracle

Làm cách nào để nhập bộ sao lưu Oracle 11g RMAN trên máy chủ cơ sở dữ liệu mới?

Tôi chưa bao giờ sử dụng công cụ này, nhưng tôi google vài phút có thể điều này sẽ giúp bạn ...

Liên kết trực tiếp: Nhập 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; 

// CHỈNH SỬA:Đây là một liên kết khác từ 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. Oracle, cách mở con trỏ và chọn một cột trong số nhiều cột vào một biến

  2. Các câu lệnh DDL kiểm tra đơn vị cần có trong một giao dịch

  3. Làm cách nào tốt nhất để tôi có thể tạo lại cơ sở dữ liệu Oracle?

  4. Cách bật tính năng theo dõi trong ứng dụng oracle r12

  5. Làm thế nào để tìm các phụ thuộc bên trong một gói oracle?