Rabu, 18 Jun 2014

Personalize Customize Oracle R12 Login Page






 




The Login page is made of following images:

- FNDSSCORP.gif - Oracle logo - $OA_MEDIA
- globalTop.jpg - Globe Image - $OA_MEDIA
- global.jpg - Globe Image - $OA_MEDIA
- people.jpg - People Image - $OA_MEDIA
- topLines.gif - Blue Color Shade - $OA_MEDIA
- headerBg.jpg - Blue Color shade - $OA_HTML/cabo/images/swan
- navBarUnderTopTabsBg.gif - $OA_HTML/cabo/images/swan
- footerBg.gif - Footer - $OA_HTML/cabo/images/swan

Take a backup of these images, replace these images with the images of your preference.

Note: If you run Auticonfig you will be back to square one.

3 ulasan:

  1. virtualnuggets offering oracle dba online training,corporate training services.

    To configure RMAN with catalog:

    *configure listener and tnsnames(refer to networking)##netca = network configuration assistant utility.
    $lsnrctl start orcl, $lsnrctl start dev.
    $tnsping orcl, $tnsping dev.
    *create password files catalog and target database.($ orapwd file=orapwdev password=oracle entries=20) # make sure we are at $ORACLE_HOME/dbs
    *create tablespace for RMAN on catalog database.
    * catalog must be latest version or equal to target database.
    Target> select instance_name, version from v$instance;
    Catalog>select instance_name, version from v$instance;
    Sql>create tablespace rman_tbs datafile ‘/location/datafile.dbf’ size 40M autoextend on;

    BalasPadam