How to fix EBS Concurrent Manager internal manager does-not start-status shows Actual 1 and Target 0 Processes

In this post we will learn how to  fix “internal manager does-not start-status actual 1 target 0′ issue in EBS. Some time Internal Manager not started properly due to this issue it shows actual 1 and target 0. In this scenario we will learn how to fix this issue.   First of all we need … Read more

How to Fix ora 1116 ora 1110 and ORA-27092 Errors in oracle database

Introduction: – In this article, we will discuss how to fix ‘ ORA 1116 ORA 1110 and ORA-27092 Errors in oracle database’. Enter Password: REP-1401: ‘cf_policyformula’: Fatal PL/SQL error occurred. ORA-01116: error in opening database file 95. In alert log file below error are reported. ERROR:-  Check the current status of ulimit. #ulimit -Sa core file size  … Read more

How to resolve ORA-609 TNS-12537 and TNS-12547 or TNS-12170.

In alert log file  error ORA-609 TNS-12537 and TNS-12547 or TNS-12170 reported. We are going to resolve this error after change parameter in sqlnet.ora file. TNS-12537: TNS:connection closed ERROR:-     Alert log shows below error.   Fatal NI connect error 12537, connecting to:  (LOCAL=NO) Thu Oct 29 11:14:13 2020 Thu Oct 29 11:14:13 2020 … Read more

How to transfer file between local and remote host using scp

In this article, we will learn how to transfer file using SCP . SCP stand for secure copy protocol. Its network protocol based on ssh (secure shell) that allow to transfer file/directory from remote  local,local to remote host and remote to remote host.    Additionally, you can use scp command in batch file or shell … Read more

How to compress full incremental backup L0, L1 backup using rman

Introduction:- Basically Backup compress full incremental backup is the feature of Oracle Database which offer more benefit. We can take the oracle rman backup as normal or in compress mode. Restoration process of compressed backup will same as uncompressed backup. Compress Full Incremental backup using RMAN:-  Incremental backups can be either level 0 or level … Read more

How to Recompile invalid objects in oracle

In this article, we will cover how to recompile invalid objects in oracle database. If Oracle objects package, procedure, function, trigger and views become invalid when dependent object has changed.  How to find invalid objects in oracle Check how many invalid objects in oracle database. SQL>select owner,object_name,status,object_type from dba_objects where status=’INVALID’; SQL>select object_name,status from dba_objects where … Read more

How to run Shell script to File transfer on remote system.

Here we will cover how to prepare Shell script to File transfer file on remote system using ftp. Below is the procedure to ‘copy file using file transfer protocol (FTP) shell scrip’ an we will see ‘How to Use Linux FTP Command to Transfer Files’. In this shell script(filetoftp.sh) we will receive notification on mail if file … Read more