Yearly Archives: 2020

Script to check Long running 12c forms in Forms Application server

The below script is to check Long running 12c forms in Forms Application server   #!/bin/bash ############################################################################### # File Name : long_runn_forms.sh # Author : Vimal Raju # Date :…

Read More

Script to get metadata for all dblinks

The below script is to get metadata for all dblinks   # @(#) ==================================================================== # @(#) Reverse engineering all database links # @(#) # @(#) # @(#) Format: reverse_all_dblinks.sql #…

Read More

Script to Disable constraints

The below script is to Disable constraints,   SET PAGES 0 SET TRIMSPOOL ON SET LINES 200 set echo off set feedb off set trimspool on set verify off col…

Read More

Script to Enable constraints

The below script is to Enable constraints,   SET PAGES 0 SET TRIMSPOOL ON SET LINES 200 set echo off set feedb off set trimspool on set verify off col…

Read More

Script to enable Archivelog and Flashback

The below script is to enable Archivelog and Flashback,   set echo off set feedb off set heading off set verify off set trimspool on set lines 200 set define…

Read More

Script to disable the plan baseline

The below script is to disable the plan baseline.   # @(#) # @(#) ==================================================================== # @(#) Disable the SQL plan baseline # @(#) # @(#) # @(#) Format: disable_plan_baseline.sql…

Read More

Script to enable the plan baseline

The below script is to enable the plan baseline   # @(#) # @(#) ==================================================================== # @(#) Change SQL plan baseline attribute (set fixed to yes) # @(#) # @(#)…

Read More

Script to gather stats the customs schemas

  The below script is to gather stats the customs schemas.   SET SERVEROUTPUT ON SIZE 1000000 set feedb off set trimspool on spool tmp_gather_schstats_${ORACLE_SID}.sql DECLARE CURSOR c_tm IS select…

Read More

GETTING APPLICATION USER PASSWORD IN R12 

Step 1 :   CREATE OR REPLACE PACKAGE get_pwd AS    FUNCTION decrypt (KEY IN VARCHAR2, VALUE IN VARCHAR2)       RETURN VARCHAR2; END get_pwd; / Step 2 :…

Read More

RC-00110: FATAL: ERROR OCCURRED WHILE RELINKING OF APPLYDBTECHSTACK

RC-00110: Fatal: Error occurred while relinking of ApplyDBTechStack Problem: I faced the following error while cloning one of our recently upgraded EBS version from 11.5.10 to 12.1.3 RC-00110: Fatal: Error…

Read More