Skip to main content

Posts

Showing posts with the label Oracle

Oracle Foreground and Background Wait Events

What is foregraound and backgroup wait events?: Its *who* is doing the waiting that determines foreground or background. *You* run a query that does a full scan... its a *foreground* db file scattered read. *SMON* runs a query that a full scan... its a *background* db file scattered read, then there *might* be some interaction between the two, for example: *You* do a commit, its foreground wait for 'log file sync'. You've asked LGWR to write some data, so you have a foreground wait but you are waiting on a background process to complete. LGWR dispatches the I/O off to the OS and it is now waiting for the I/O to complete. So it has a background wait of "log file parallel write". You could argue that *you* are also effectively waiting on that as well, but we don't make that interpretation because it wasn't you that issued the I/O. Eventually the IO completes and LGWR is done, so its no longer waiting. Shortly thereafter, LGWR is going to let you know that t...

Oracle E-Business Suite Patching using adop

Following description about Oracle E-Business Suite is high level and from documentation https://docs.oracle.com/cd/E26401_01/doc.122/e22954/T202991T531062.htm#5281339 for in depth and detail description refer it.   E- Business Suite patching: Oracle E- Business Suite technology layer include: AD - Oracle Applications DBA (AD) FND - Oracle Application Object Library (FND) AU - Oracle Applications Utilities (AU) AK - Oracle Common Modules (AK) WF - Oracle Workflow (WF) ALR - Oracle Alert (ALR) FWK - Oracle Application Framework (FWK) XDO - Oracle XML Publisher (XDO) RUP - Release update pack (RUP) TXK - EBS 12.2 technology stack (TXK) and Applications Database (AD) components CPU - Critical Patch Updates PSUs - Patch set updates ATG - Application technology group PAA - Oracle Patch Application Assistant OAM - Oracle Applications Manager Patch files Structures: The README.txt or README.html file describes what the patch does. Driver File - u<patchnum>.drv, contains...

Oracle E-Business Suite Daily SQL Statements

Oracle E-Business Suite Daily SQL: Current version: SELECT RELEASE_NAME FROM APPS.FND_PRODUCT_GROUPS; Find out application server information from database server:   column name format a20 SELECT NAME, NODE_ID, SERVER_TYPE FROM APPS.FND_APP_SERVERS; NAME                                     NODE_ID       SERVER_TYPE --------------------                      ----------          ------------------------------ <hostname>_EBSDEV_APPS      10113            APPS <hostname>_EBSDEV_DB          10112...