Error log: SQL> alter database open resetlogs; alter database open resetlogs * ERROR at line 1: ORA-01194: file 1 needs more recovery to be consistent ORA-01110: data file 1: ‘/u01/app/oracle/oradata/ORCL/system01.dbf’ …
Backup&Recovery
-
-
How to automate Oracle RMAN Backup with shell script In a real environment, you obviously won’t manually trigger all of the Oracle database backups. An automated mechanism is required to …
-
Backup&RecoveryDataguardOracle
Recover a Table from Drop/Truncate/Delete done on Primary using Flashback on a Standby
by tuanlpby tuanlpIn this article, we will learn steps needed to perform recovery of User wrong operation like delete/drop/truncate action on the production table without using Restore and Recover command on PRIMARY DATABASE. …
-
Backup&RecoveryOracle
Steps to Clone Oracle Database from Windows to Oracle Linux
by tuanlpby tuanlpIn the previous blog, we saw Steps to create a Heterogeneous Dataguard between Windows and Linux Click here to read more. In this blog, we are going to perform a clone of Windows Oracle DB …
-
-
-
1) Kiểm tra trước trong Source database: Step 1 : Kiểm tra kích thước cơ sở dữ liệu trong SOURCE: select ( select sum(bytes)/1024/1024/1024 data_size from dba_data_files ) + ( select …
-
Cách flashback cả database về thời thời điểm bất kỳ: SQL> select * from V$FLASHBACK_DATABASE_LOG; SQL> Shutdown immediate; SQL> Startup mount; SQL> flashback database to timestamp TO_TIMESTAMP( ‘2022-03-04 19:00:00′,’YYYY-MM-DD HH24:MI:SS’); …
-
Backup&RecoveryOracle
Create Flashback RESTORE POINT before any activity in Oracle
by tuanlpby tuanlpIn Flashback recovery, you can create restore point before any upgrade, patching and application testing activity. We can create restore point in two ways: Norman Restore Point: Its age out with …
-
Backup&RecoveryOracle
Backup and restore example with password encryption in Oracle
by tuanlpby tuanlpFollowing are the things for running the RMAN Backup with Password Protected: Set the configuration of RMAN to use Encryption: — Check the configuration RMAN> Show all; — Set the …
- 1
- 2