Posts by Sundaraiya Balu

oracle ebs r12.1.1 installation on oracle cloud

ORACLE EBS 12.1.1 INSTALLATION STEPS:1 Login into the cloud Create Instance Main menuàcomputeà instanceàcreate instance Give name to the instance Choose availability domain Choose hardware and software for instance Choose…

Read More

script to monitor apps and db listener running on single node

This script is useful to frequently monitor db and apps listener status running on single node. Run this script in crontab to frequently monitor db&app listener status. #!/bin/bash rm DB.log…

Read More

script to alert mount point space status without mail alert

This script is used to check the mount points space status without mail alert. Save the mount points name in mn.log file before running this script. #!/bin/bash rm mn1.log rm…

Read More

script to get concurrent request outfiles for list of concurrent request id.

This script is useful when the dev Team asks larger number of concurrent request outfiles frequently. Before running this script copy the required concurrent request id to conrequestid.txt file. To…

Read More

Oracle Ebs R12.1 Post Install Check Error

This error occurred when we install Oracle EBS R12.1 on oracle  cloud. CAUSES OF ISSUE The http port number and instance public ip is blocked by the vcn network. There…

Read More

ORA-01578, ORA-01110 index table block corruption

One of the index table FND_CONCURRENT_REQUESTS_N9’s block is corrupted. Causes of issue: Abnormal server down Steps to solve this issue: 1.Find table name of corrupted block SELECT k.owner, k.segment_type, k.segment_name,…

Read More

getting ebs R12.2 web logic url from os level

This os level command used to get the oracle EBS R12.2 web logic url. echo “http://”$(cat $CONTEXT_FILE | grep s_webhost | cut -d ‘>’ -f2 | cut -d ‘<‘ -f1)”.”$(cat…

Read More

Fetching particular concurrent request out file remotely

This script fetch & transfer the specific concurrent request log file to remote location. $ vi Connout.sh cat /dev/null > /usr/tmp/ftp.log cat /dev/null > /usr/tmp/ftp1.log echo “Enter Concurrent program Request…

Read More

Get any Apps User Password from Backend

In this steps we can find any user name’s password in oracle apps. STEP 1:  login to Database through Command Prompt #sqlplus / as sysdba STEP 2 : Create Function…

Read More

ORA-00245: control file backup failed in Rman backup

A snapshot controlfile is a read consistent copy of a database controlfile which RMAN creates because the controlfile is changed constantly. The snapshot controlfile must be on a location shared…

Read More