Posts by Vimal Raju

Script to start 12c Forms & Reports

Script to start 12c Forms & Reports,   ************************************************************************************ export MW_HOME=/u01/app/oracle/middleware export DOMAIN_HOME=$MW_HOME/user_projects/domains/ClassicDomain echo “Starting NodeManager” nohup $DOMAIN_HOME/bin/startNodeManager.sh > /dev/null 2>&1 & sleep 120 echo “Starting OHS” nohup $DOMAIN_HOME/bin/startComponent.sh ohs…

Read More

Create Standalone reports server in 12c Reports using WebLogic Scripting Tool (WLST)

Create the Standalone reports server using WebLogic Scripting Tool (WLST) after 12c Forms & Reports installation. 1. Login WebLogic Scripting Tool, cd $ORACLE_HOME/oracle_common/common/bin ./wlst.sh 2. Connect to the AdminServer, connect(“weblogic”,”weblogic_password”,”hostname:7001″)…

Read More

Create ReportsToolsInstance in 12c Reports using WebLogic Scripting Tool (WLST)

Create ReportsToolsInstance in 12c Reports using WebLogic Scripting Tool (WLST) after 12c Forms & Reports installation. 1. Login WebLogic Scripting Tool, cd $ORACLE_HOME/oracle_common/common/bin ./wlst.sh 2. Connect to AdminServer, connect(“weblogic”,”weblogic_password”,”hostname:7001″) 3.…

Read More

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