Home » Oracle » Page 84

Oracle

ORACLE TUTORIALS

Oracle is most widely used Oracle database in the world. It has the capacity to handle large database and high transaction

Here I am presenting the Oracle tutorials on Various Oracle products

  1. Oracle database
  2. Oracle sql/plsql
  3. Oracle application
  4. Weblogic
  5. Performance tuning.

These articles will be  really help in understanding the oracle products and getting started on Oracle system

RMAN Backup commands

We can use RMAN to backup all the parts of the oracle database. RMAN backup commands can be used backs up Oracle database files, copies of database files, archived logs, or backup sets. Here is the general syntax for RMAN backup command Syntax: BACKUP FULL Options BACKUP FULL AS (COPY | BACKUPSET) Options BACKUP INCREMENTAL …

RMAN Backup commands Read More »

Top queries to find Patch applied in Oracle apps

We often get the task to check patches applied in the oracle apps environment. Here are the Top queries to find Patch applied in EBS How to find if the bug number or patch is applied to Apps EBS select substr(APPLICATION_SHORT_NAME,1,10) Product,substr(BUG_NUMBER,1,10),Version,last_update_date applied_date from ad_bugs where BUG_NUMBER= to_char(‘&bug_no’); How to find the patch level of …

Top queries to find Patch applied in Oracle apps Read More »

Patch history tables in Oracle Apps (11i/R12.1/R12.2)

Patch history tables in Oracle Apps 11i and R12.1 AD_APPL_TOPS Stores information about all APPL_TOPS utilizing this instance. AD_APPLIED_PATCHES Stores information about all distinct updates applied. AD_BUGS Stores information about all distinct bug fixes applied. AD_DRIVERS Stores information about the drivers that comprise an update. AD_FILE_VERSIONS Stores version information for files. AD_FILES Stores information about …

Patch history tables in Oracle Apps (11i/R12.1/R12.2) Read More »

Scroll to Top