Increase Open Files Limit to resolve Too Many Open files error and native OutOfMemory due to failed to create thread

Introduction: – Suddenly we faced the error ‘Open file limit ‘ while login on Linux server and try to run df -h or any other command. Here will see outofmemory  and resolve too many open files error. The likely cause of this issue is hitting max “Open file limit“. This error indicates that all available file handles … Read more

Steps to create physical standby database using rman backup

Introduction: – Here we are discussing ‘How to create physical standby database using rman backup restore’ in oracle database. We will follow the simple steps to create standby database. Steps to create physical standby database. Step 1:- Connect to primary database and check recovery area.   SQL> show parameter db_recovery;   NAMETYPEVALUE ———————————— ———– —————————— … Read more

How to create directory in oracle database

To create directory in oracle we can use ‘create directory‘ statement (CREATE OR REPLACE DIRECTORY <directory_name> AS ‘<operating_system_path>’;). In this article, we will learn how to create directory in oracle. The following statement will create directory oracle database object that points to a directory on the server: How to create directory in oracle. Syntax: – … Read more

How to Compress RMAN Backup in Oracle

In this post we will discuss about Compress RMAN Backup which will help to compress our database backup. There are different rman backup compression levels with Oracle. BASIC, LOW, MEDIUM and HIGH are the four different compression levels. We must have ‘Advanced Compression’ option license to use LOW, MEDIUM and HIGH levels in oracle.  When we … Read more

How to do Oracle RMAN Incremental Backup.

In this article we will discuss about Oracle RMAN Incremental Backup. An Incremental backup is those backup that only backup datafile blocks that have changed since a specified previous backup. You can make incremental backups of whole databases, individual tablespaces or datafiles. The purpose of an incremental backup is to backup only those data blocks … Read more

RMAN Backup and Recovery Interview Questions

Introduction: – RMAN Backup And Recovery Interview Questions| Here is useful RMAN Backup and Recovery Interview Questions/Answers for DBA. Below are oracle rman interview questions. Q⟹ What is RMAN?   A⟹RMAN is an Oracle Database client that performs backup, restoration,recovery and administrative tasks in oracle Database. It greatly simplifies the dba jobs by managing the production … Read more

ORA-1652: unable to extend temp segment by 128 in tablespace TEMP

Introduction: – In this post covers ORA-1652: unable to extend temp segment by 128 in tablespace TEMP error. Generally, we are facing this ora error while running sql query or concurrent program in our Instance. How to resolve ORA-1652 unable to extend temp segment.     The ORA-01652 error occurs due to failure in allocating … Read more

Restore and recover Pluggable Database (PDB) from rman backup.

Introduction: – Before restoration and recovery of PDB (Pluggable database), we need to ensure that valid rman backup available. Here we will cover restore and recover pluggable database. We can restore using restore pluggable database PDBORCL1; Steps to restore and recover pluggable database. We have already discussed the same in another post. Please check here for … Read more

How to delete concurrent program and executable in oracle apps

In this article we will discuss the ‘How to delete concurrent program from backend‘. To delete a concurrent program and executable in Oracle Apps (E-Business Suite), you’ll need to follow a series of steps through the application’s user interface. Please note that making changes to Oracle Apps should be done with caution, as it can … Read more

How to resolve ORA-19809 limit exceeded for recovery files

Introduction:- How to fix ORA-19809 limit exceeded for recovery files. | In this article we will discuss ‘how to resolve ORA-19809 and ORA-19804′ error. This has very common issue while doing RMAN backup, we have faced ORA-19809 and ORA-19804 error due to recovery destination full. In this scenario we will have to remove old archivelog (expired or … Read more