What is the difference between hot backup and cold backup in oracle? Tell about their benefits also.
Answer / Akash Kumar
Hot backups are online, non-intrusive backups that allow databases to remain accessible during the backup process. They provide faster recovery times as less downtime is required for the backup. However, they can consume more system resources and may require a higher level of expertise to perform. Cold backups, on the other hand, involve shutting down the database instance before taking the backup. This approach consumes fewer resources but requires longer recovery times. The benefits of hot backups are faster recovery times and less downtime, while cold backups offer better resource utilization and lower risk of data corruption.
| Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by cdb and pdb in oracle 12c?
difference between imlicit cursor and explicit cursor ?
Explain oracle insert into command?
SQLERRM is a a. Constraint b. Pre Defined Exception c. Pseduocolumn d. Constant e. None of Above.
Explain the use of record length option in exp command.
Create table Employee ( Employee_Id varchar2(8) Constraint emp_id_pk primary key, FirstName varchar2(50), LastName varchar2(50), DeptID Number(5) Constraint dept_id_fk Foreign Key(DeptId) References Department(DeptId) ) Error I am getting: Constraint specification are not allowed here
Display the records between two range?
How to write an inner join with the where clause in oracle?
When system tablespace is created?
What is Java Pool in Oracle?
How to pass parameters to procedures in oracle?
What is format trigger?