Monthly Archives: September 2020

How to enable trace/debug in tomcat and which log we need to analyze when there is any issue reported

The default log files and logging levels are defined in logging.properties file under the below location /home/oracle/tomcat_09_Aug_2020/apache-tomcat-9.0.36/conf. The list is arranged in order by level of detail from the least…

Read More

How to Find underscore_parameters in a database during Audit process

Impact: Unknown underscore parameters without proper advice from metalink, would impact the database. Solution: We need to ensure that we have proper advises from Oracle Support on those underscore parameters…

Read More

How to resolve Resolve ORA-20005: object statistics are locked (stattype = ALL)

Introduction Need for want of lock statistics in a oracle table in some cases, for example 1. Don’t want a table to be analyzed by schedule statistics job but want…

Read More

How to resolve FRM-30087: Unable to create form file

Error: FRM-30087: Unable to create form file $ORACLE_HOME/forms/WOENTRY.fmx Cause: Non-oracle user cannot write in the “output” directory or the mentioned fmx exists but user cannot overwrite it. Workaround: 1. By…

Read More

How to resolve Forms Builder Does not Launch on Linux RHEL 7

Error: error while loading shared libraries: libXm.so.3: cannot open shared object file: No such file or directory Solution: 1. As a workaround, make sure the following 64 bits openmotif packages…

Read More

How to resolve ORA-39083 error during import

Error: =========== We came across below ORA error during import of Schema ORA-39083: Object type TYPE:”FMSDEV”.”SAMPLE_TYPE_TABLE” failed to create with error: ORA-02304: invalid object identifier literal Failing sql is: CREATE…

Read More

How to reorganize table using alter table method

We have to check the below details before reorganize the table TABLE DETAILS   SELECT OWNER, SEGMENT_NAME, SEGMENT_TYPE, TABLESPACE_NAME, BYTES/1024/1024/1024 FROM DBA_SEGMENTS WHERE SEGMENT_NAME IN (‘WF_ITEM_ACTIVITY_STATUSES_H’);   OWNER     …

Read More

Prepare phase failed:[ERROR]: The value of s_patch_service_name is not set correctly in atleast one of the context files.

Update Database Tier to Latest Code   Call env from APPS NOde   Execute the admkappsutil.pl utility to create the appsutil.zip file in <INST_TOP>/admin/out.   $ perl <AD_TOP>/bin/admkappsutil.pl   mv…

Read More

How to apply Middleware 11.1.1.9 webtier patches in 12.2

adop patch process cycle steps: 1) Run FSCLONE 2) PREPARE 3) APPLY 4) FINALIZE 5) CUTOVER 6) CLEANUP Before start to apply the patches we have to run fsclone to…

Read More

How to monitor adop patching cycle from backend

As a new feature of EBS 12.2.5 , we have adopmon(adop monitor, Online Patching Monitoring utility) utility for monitoring the online patching cycles. It provides a readable output, letting us…

Read More