Query To check Current Users Logged in EBS
select distinct fu.user_name User_Name,fr.RESPONSIBILITY_KEY Responsibility from fnd_user fu,fnd_responsibility fr, icx_sessions icwhere fu.user_id = ic.user_id ANDfr.responsibility_id =...
View ArticleEBS Output Post Processor Best Practices
Output Post Processor (OPP)Concurrent Processing now uses the Output Post Processor (OPP) to enforce post-processing actions for concurrent requests. Post-processing actions are actions taken on...
View ArticleTo Find Index Fragmentation and Usage
To Find Index Fragmentation~~~~~~~~~~~~~~~~~~~~~~~~~~~analyze index <index_name> validate structure;select round((del_lf_rows/lf_rows)*100,2) ratio, height, lf_blks, lf_rows from index_stats;We...
View ArticleRoll Forward Physical standby database in 12c
Step 1:sqlplus / as sysdbaALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;SHUTDOWN IMMEDIATE;STARTUP NOMOUNT;ALTER DATABASE MOUNT STANDBY DATABASE;ALTER DATABASE RECOVER MANAGED STANDBY DATABASE...
View Article[FATAL] [INS-30024] Installer has detected that the location determined as...
Issue:[INS-30024] Installer has detected that the location determined as Oracle Grid Infrastructure home, is not a valid Oracle home.Cause:Due to failed previous grid installation.Solution:Rename...
View ArticleError in invoking target 'agent nmhs' of make file ins_emagent.mk while...
Issue:Error in invoking target 'agent nmhs' of make file ins_emagent.mk while installing Oracle 11.2.0.4 on rhel 7Cause:New oracle 11.2.0.4 installation on RHEL 7 and the below error is reported during...
View ArticleEM 13c Cloud Contorol Login Fails as SYSMAN with Error:...
Issue:Failed to login using repository authentication for user: SYSMANoracle.sysman.emSDK.sec.auth.InvalidEMUserException: Failed to login using repository authentication for user: SYSMANCause:Unable...
View ArticleRMAN is hung or it is very slow / Clearing RMAN repository / Troubleshoot...
RMAN is hung or it is very slow / Clearing RMAN repository / Troubleshoot RMAN-06214 errorRMAN> DELETE FORCE NOPROMPT OBSOLETE DEVICE TYPE DISK;If error still occurs, then try the belowRMAN>...
View ArticleIntermittent cellsrv crashes with ORA-07445 after upgrading to 12.2.1.1.7
Intermittent cellsrv crashes with ORA-07445 after upgrading to 12.2.1.1.7Exadata X6-2 full and half racks were patched recently with 12.2.1.1.7 Aug/2018 quarterly patch set. An ORA-07445 started to...
View ArticleOracle E-Business Suite Learning Subscription Free Access Videos
Oracle has been publishing useful knowledge contents related to Oracle E-Business Suite as videos in their Oracle Learning Subscription portal, which are freely accessible. Some may know, many are not...
View ArticleORA-20005: object statistics are locked (stattype = ALL)
ORA-20005: object statistics are locked (stattype = ALL) - SolutionERRORDuring tuning a query, I found one table has stale statistics. While running gather stats for that table, got below error. Let me...
View ArticleQuerying the amount of redo in Oracle Database Posted on December 13, 2018...
Query to obtain the amount of redo generation over time by hour and MB:set pages 999 lines 400select to_char(trunc(first_time, 'HH24'), 'DD/MM/YYYY HH24:MI:SS') date_by_hour,...
View Articlequery to find segment name
Run below query to find segment name :1) Query-1: Find segment name with ownerTo find segment name from Corrupt BlockFind segment name from Corrupt Block:SQL> select * from dba_extents where file_id...
View ArticleFLUSH_DATABASE_MONITORING_INFO Procedure
FLUSH_DATABASE_MONITORING_INFO ProcedureSQL> exec dbms_stats.FLUSH_DATABASE_MONITORING_INFO;PL/SQL procedure successfully completed.after executing above package, then below query will give you...
View ArticleQuery to shows Day wise,User wise,Process id of server wise- CPU and I/O...
shows Day wise,User wise,Process id of server wise- CPU and I/O consumption set linesize 140col spid for a6col program for a35 truncselect p.spid SPID,to_char(s.LOGON_TIME,'DDMonYY HH24:MI')...
View ArticleMoving Audit trail objects to different table-space to gain performance:
Moving Audit trail objects to different table-space to gain performance:Use the DBMS_AUDIT_MGMT package to move them to the SYSAUX...
View ArticlePLS-00201: identifier 'DBMS_CRYPTO' must be declared issue - Fix
PLS-00201: identifier 'DBMS_CRYPTO' must be declared issue - FixISSUE:SQL> show errorErrors for FUNCTION "SCOTT"."DECRYPT_CHAR":LINE/COL ERROR--------...
View ArticleORA-14693: The MAX_STRING_SIZE parameter must be EXTENDED
ORA-14693: The MAX_STRING_SIZE parameter must be EXTENDEDISSUE:During cloning a database, I found below error:ORA-14693: The MAX_STRING_SIZE parameter must be EXTENDEDRMAN-00571:...
View ArticleORA-01666: control file is for a standby database - failover over standby as...
ORA-01666: control file is for a standby database - failover over standby as primarySQL> select name,open_mode ,database_role from v$database;NAME OPEN_MODE DATABASE_ROLE---------...
View ArticleORA-19909: datafile 1 belongs to an orphan incarnation
ORA-19909: datafile 1 belongs to an orphan incarnationWhen I tried to Flashback on in standby database then suddenly below message found in alert log and standby database not able to apply archive-logs...
View Article