Unable To View Workflow Status Diagram
Refer Note ID 746806.1 Applies to:Oracle Workflow Cartridge – Version: 11.5.9 to 12.0.6This problem can occur on any platform.SymptomsWhen clicked on the Status diagram following message appears “You...
View ArticleAutomated auto start stop oracle database RedHat Linux Booting
If you are using Oracle Clusterware 10gR2 or above for RAC or just for a single instance using ASM, the Clusterware automatically starts and stops the Oracle database instances and listeners, so the...
View ArticleQuery to find out the bind variable by using sql_id, duplicate datafile in a...
Query to find out the duplicate datafile in a database.select substr(name, instr(name, '/',-1)+1) ,count(*) from v$datafile group by substr(name, instr(name, '/',-1)+1) having count(*) >1;select...
View ArticleQuery to Get the ICM Manager Logfile Location
STEPS:* Log-in to the Apps User* Run Source environment file* Connect to sqlplus and run this querySELECT ‘ICM_LOG_NAME=’ || fcp.logfile_nameFROM fnd_concurrent_processes fcp, fnd_concurrent_queues...
View ArticleHow To Recreate the /appsutil/scripts/ directory
Applies to:Oracle Applications Manager - Version: 11.5.7 to 11.5.10.2 - Release: 11.5 to 11.5Information in this document applies to any platform.GoalThe $ORACLE_HOME/appsutil directory or...
View ArticleAPEX APPLICATION BACKUP FROM BACKEND
1) To use APEXExport, a JDK of version 1.5 or greater must be used. Additionally, the Oracle JDBCclass libraries must be in your CLASSPATH.To set the CLASSPATH, following are some examples:export...
View ArticleScript to generate Execution Plan output in a detailed manner
Please change the below script as per your need.set lines 150set echo onset pages 500delete from plan_table where statement_id='dba';commit;spool eplan11gexplain plan set statement_id='dba' forPlease...
View ArticleScript to generate Total, Free, Used size of a Database.
Please change the below script as per your environment need.set serveroutput ondeclare total_size_b number; free_size_b number; used_size_b number;begin dbms_output.enable(100000); select...
View ArticleArticle 1
Relinking EBS R12 application after OS upgrade1. Backup adlnkoh.sh cd $ORACLE_HOME/appsutil/install cp adlnkoh.sh adlnkoh.sh_bkp 2. Edit adlnkoh.sh under $ORACLE_HOME/appsutil/install vi...
View ArticleScript to generate Long Running Transaction more than 6 hrs in a database.
Please change the time, username in the below script as per your requirements.set lines 120 pages 300set serveroutput onexec dbms_output.enable(NULL);set echo offspool...
View ArticleHOW TO FIX BROKEN JOBS
Step 1: Jobs that are currently running:SELECT * FROM dba_jobs_running;Step 2: Get the details of broken jobsSELECT job FROM dba_jobs WHERE broken = 'Y';col log_user for a30select...
View ArticleMANUALLY CREATING SQL TUNING SET
Step 1: I have used the below script (sql_tuning_task.sql)SET LONG 10000;SET PAGESIZE 9999SET LINESIZE 155set verify offcol recommendations for a150accept task_name - prompt 'Task_Name: ' DECLARE...
View ArticleHOW TO RETRIEVE THE DROPPED TABLE IN ORACLE USING RMAN AND FLASHBACK TECHNOLOGY
Step 1: Check whether DB has recyclebin on or offSYS@xxxx> sho parameter recyclebin;NAME TYPEVALUE------------------------------------ ----------- ------------------------------recyclebin string...
View ArticleORA-04045: errors during recompilation/revalidation of SYS.XDB_PI_TRIG
utlrp.sql errors out with the above error.To fix thisALTER SYSTEM SET "_system_trig_enabled" = FALSE
View ArticleCatalog and catproc invalid in dba_registry
COMP_ID COMP_NAME VERSION STATUS------------------------------ ----------------------------------------...
View ArticleORA-29516: Aurora assertion failure: Assertion failure at joez.c:3422
1. look at your shell limits, and ensure that your stack is set to less than two gigabytes:ulimit -a2. Try to set a little value for your memory target, for example 900Mb is enough to create the...
View ArticleSteps to rename datafile using RMAN.
Please execute the below in rman.run{sql 'alter database datafile 12 offline';COPY DATAFILE 12 TO '/u01/oracle/oradata/USERS04.DBF';set newname for datafile 12 to...
View ArticleORA-01994: GRANT failed: password file missing or disabled
SQL>grant sysdba to an_user;ORA-01994: GRANT failed: password file missing or disabledcd $ORACLE_HOME/dbs/Move or delete old password file.Create new password file.orapwd file=orapwPROD entries=10...
View ArticleORA-28003: password verification for the specified password failed
SQL> alter user oracle identified by oracle123;alter user oracle identified by oracle123*ERROR at line 1:ORA-28003: password verification for the specified password failedORA-20009: Error: You...
View ArticleSteps for Migrating to ASM using RMAN
Please follow the below steps to convert a NON-ASM to ASM .SQL> ALTER DATABASE DISABLE BLOCK CHANGE TRACKING;SQL > shutdown immediate;SQL > exit;Please add the below in pfile and save.$vi...
View Article