Skip to main content

Frequently Asked Questions Sharing the Application Tier File System in Oracle Applications 11i




Questions and Answers

  1. What is a "Shared APPL_TOP"?
  2. Answer:
    A traditional multi-node installation requires the Applications file system on each node in the system.
    In a Shared APPL_TOP installation, the APPL_TOP and the COMMON_TOP file systems are installed on a shared disk resource mounted to each node in the system. These nodes can be used to provide standard application tier services, such as Forms, Web, and Concurrent processing. Any changes made in the shared APPL_TOP file system are immediately visible on all nodes.
    Note that each node continues to have a separate Applications techstack installation (see also question 2).


  3. What is a "shared application tier file system"?
  4. Answer:
    In a shared application tier file system installation, the APPL_TOP, the COMMON_TOP, and the Applications technology stack (ORACLE_HOMEs) are installed on a shared disk resource mounted to each node in the system. These nodes can be used to provide standard application tier services, such as Forms, Web, and Concurrent processing. Any changes made in the shared application tier file system are immediately visible on all nodes.


  5. What operating systems are certified?
  6. Answer:
    All Rapid Install platforms except Windows support a shared application tier infrastructure. There is no time estimate for a Windows solution.


  7. I want to migrate my existing Oracle Applications system to a shared application tier file system. What 11i releases are supported?
  8. Answer:
    You can migrate any existing Oracle Applications 11i release to a shared application tier file system.


  9. Can I share the application tier file system across nodes with different platforms?
  10. Answer:
    No. The nodes sharing the application tier file system need to be binary-compatible.


  11. If the platforms of my nodes are binary-compatible, can I share the application tier file systems? For example, can I share a node using Solaris 2.6 with one using Solaris 8?
  12. Answer:
    No, all machines sharing the file system must be configured to run the same Operating System with the same OS patch level.


  13. Are there any restrictions on the type of shared disk resources that can be used for sharing an application tier file system?
  14. Answer:
    No, your shared application tier file system can reside on any type of shared disk resource. Examples of shared disk resources include an NFS mounted disk or a disk array. The shared disk resource does not have to be local to the machine, and it can also be a standalone disk array. Usual tuning considerations apply.


  15. Can I merge APPL_TOPs?
  16. Answer:
    Yes, you can merge APPL_TOPs that are spread across multiple nodes. Follow the instructions described in the OracleMetaLink document 233428.1.


  17. How can I implement a shared application tier file system during an Oracle Applications installation?
  18. Answer:
    You must use the Rapid Install 11.5.10 or higher. Refer to Installing Oracle Applications for more information.


  19. How can I migrate my existing Oracle Applications system to a shared application tier file system?
  20. Answer:
    Follow the instructions described in the OracleMetaLink document 233428.1.


  21. When migrating my existing Oracle Applications system to a shared application tier file system, I had to rename the Oracle Applications Context file. Will I still need the original file and its associated context directories/files?
  22. Answer:
    The following files/directories can be removed after you back them up:

    • The original Context File /admin/.xml
    • The file /APPSORA.env>
    • The directory /admin/scripts/
    • The directory /admin/install/

Comments

Popular posts from this blog

CLSRSC-430: Failed to start rolling patch mode

############################################################ GRID PSU Failed on Node2: =========================== [root@server1 tmp]# /oracrs/oracle/product/12102/OPatch/opatchauto apply /path1/patches/23273629 -oh /oracrs/oracle/product/12102 -ocmrf /tmp/ocm.rsp OPatch Automation Tool Copyright (c)2014, Oracle Corporation. All rights reserved. OPatchauto Version : 12.1.0.1.10 OUI Version        : 12.1.0.2.0 Running from       : /oracrs/oracle/product/12102 opatchauto log file: /oracrs/oracle/product/12102/cfgtoollogs/opatchauto/23273629/opatch_gi_2016-11-25_06-13-44_deploy.log Parameter Validation: Successful Configuration Validation: Successful Patch Location: /path1/patches/23273629 Grid Infrastructure Patch(es): 21436941 23054246 23054327 23054341 DB Patch(es): 23054246 23054327 The following patch(es) are duplicate patches with patches installed in the Oracle Home.  [ 20299023] You hav...

SQL Plan Management [ SPM ]

============================================= SQL> SHOW parameter baselines NAME                                 TYPE        VALUE ------------------------------------ ----------- ------- optimizer_capture_sql_plan_baselines boolean     FALSE optimizer_use_sql_plan_baselines     boolean     TRUE SQL> ============================================= Connect as SPM user and create a table as follows. -------------------------------------------------- SQL> CREATE TABLE EMPLOYEE (code number,dept char(100),address char(1000)); Table created. SQL> ============================================= Populate some rows in the table =================================== declare c1 number; begin for c1 IN 1..10000 ...