Query to find Errored concurrent Requests in Last 24 Hrs:
SELECT b.request_id, a.user_concurrent_program_name, b.phase_code AS completed, b.status_code AS error, u.user_name requestor, TO_CHAR (b.actual_start_date, 'MM/DD/YY HH24:MI:SS')...
View ArticleQuery to terminate the Bulk concurrent request in oracle apps
Query to terminate the Bulk concurrent request in oracle appsQuery:update fnd_concurrent_requests set status_code='X', phase_code='C' where concurrent_program_id='51385'and phase_code='P' and...
View ArticleREP-0004: Warning: Unable to open user preference file.
R12: Executing A Report Fails With REP-0004: Warning: Unable to open user preference file.On an E-Business Suite Release 12.1.3 - when attempting to execute a Report the following error occurs:ERROR:...
View ArticleEXPDP/IMPDP failing with UDE-31623: operation generated ORACLE error 31623
While exporting we got the following error,ERROR: UDE-31623: operation generated ORACLE error 31623ORA-31623: a job is not attached to this session via the specified handleORA-06512: at...
View Articleadop_session_details
select ADOP_SESSION_ID, BUG_NUMBER, STATUS, APPLIED_FILE_SYSTEM_BASE, PATCH_FILE_SYSTEM_BASE, ADPATCH_OPTIONS, NODE_NAME, END_DATE, CLONE_STATUSfrom ad_adop_session_patchesorder by end_date desc;Note:...
View ArticleLocked objects details session wise
SELECT O.OBJECT_NAME, S.SID, S.SERIAL#, P.SPID, S.PROGRAM,S.USERNAME,S.MACHINE,S.PORT , S.LOGON_TIME,SQ.SQL_FULLTEXTFROM V$LOCKED_OBJECT L, DBA_OBJECTS O, V$SESSION S,V$PROCESS P, V$SQL SQWHERE...
View ArticlePackage running status
select x.sidfrom v$session x, v$sqltext ywhere x.sql_address = y.addressand y.sql_text like '%<package name>%';
View ArticleMeasuring Oracle I/O Performance Using CALIBRATE_IO
Measuring Oracle I/O Performance Using CALIBRATE_IOThere are many third party tools to measure I/O performance, but CALIBRATE_IO is oracle provided tool, introduced in Oracle Database 11g Release 1....
View ArticleArticle 0
Query to Displays a list of all the spfile parameters.Query:This query is used to display the parameter present in the spfile.SET LINESIZE 500COLUMN name FORMAT...
View ArticleUsing deprecated ASM parameter might prevent your Cluster to start
Used ASM_PREFERRED_READ_FAILURE_GROUPS parameter to see how I can force ASM to read specific failure group. Testings were successfull but I didn’t know that this parameter is deprecated in 12.2, and...
View ArticleRAC Node Eviction
Why Node EvictionThe node eviction/reboot is used for I/O fencing to ensure that writes from I/O capable clients can be cleared avoiding potential corruption scenarios in the event of a network split,...
View ArticleNew READ Object Privilege in 12cR1
The “SELECT” object privilege in addition to querying the table, allows the user to: LOCK TABLE table_name IN EXCLUSIVE MODE;SELECT… FROM table_name FOR UPDATE;The New Feature of “READ” object...
View ArticleMRP process getting terminated with error ORA-10485
If you have a Data Guard environment, where you’ve just applied a Database Bundle Patch and OJVM Patch, it’s possible that your Physical Standby can throw the following error:Completed: ALTER DATABASE...
View ArticleHow To Enable DDL Logging in the Database
If for whatever reason, you are required to log DDL, for example, I need to know why the LAST_DDL_TIME of a table was getting updated, you can do this from Oracle 11g.To Enable:SQL> show parameter...
View ArticleUser Management Of The Exadata Smart Flash Cache
There are two techniques provided to manually use and manage the cache. The first enables thepinning of objects in the flash cache. The second supports the creation of logical disks out of theflash for...
View ArticleOSB CLOUD BACKUP FOR AMAZON S3
OSB CLOUD BACKUP FOR AMAZON S3Steps to implement OSB cloud module for Amazon S3:============================================Before Running the OSB Cloud Module for Amazon s3 Installer,verify the...
View ArticleMinimize System Contention
how to Minimize System ContentionUnderstanding Response TimeSQL> select metric_name, valuefrom v$sysmetricwhere metric_name in ('Database CPU Time Ratio','Database Wait Time Ratio') andintsize_csec...
View Articlechanging the SYS password in a Data Guard environment
changing the SYS password in a Data Guard environmentThe way to change the SYS password without breaking the redo transport service includescopying the primary database's password file to the standby...
View ArticleOEM_working_at_commang_line
Working at the Command Line:Start an EM CLI Sessionemcli login -username="SYSMAN"emcli syncemcli helpemcli help syncThe get_targets Verbemcli set_credential -target_type=oracle_database...
View ArticleRMAN new features and enhancements
RMAN new features and enhancementsContainer and pluggable database backup and restoreRMAN> BACKUP DATABASE; (To backup the CBD + all PDBs)RMAN> BACKUP DATABASE root; (To backup only the...
View Article