Daily Archives: March 20, 2014

Disks


Disk groups are created using the CREATE DISKGROUP statement. This statement allows you to specify the level of redundancy: 1. NORMAL REDUNDANCY – Two-way mirroring, requiring two failure groups. 2. HIGH REDUNDANCY – Three-way mirroring, requiring three failure groups. 3. EXTERNAL REDUNDANCY – No mirroring for disks that are already protected using hardware mirroring or […]

Find out Application Names (Products) in Oracle Apps?


set lines 200 set pagesize 300 col APPLICATION_NAME for a70 select a.APPLICATION_NAME, b.APPLICATION_SHORT_NAME from apps.fnd_application b, apps.fnd_application_tl a  where a.APPLICATION_ID=b.APPLICATION_ID;