Oracle Applications DBA APPSLab

Oracle APPSLab is a place where you get what you look for on Oracle’s Applications, Database, Fusion Middleware and many more.

		
		

Oracle Applications DBA APPSLab

CATEGORIES
  • Apps R12

    Start R12 in forms socket mode
    Changing Application tier Platforms
    Installation Of Apps R12
    Upgrade to Apps R12
    Get Current Patchset level
    Clone and Autoconfig logs
    Enable OEM in Release 12
    Collecting Config info for HTTP
    Regenerate forms in R12
    Downtime and Apache restrict mode

  • Apps 11i

    Prevent Conc request on new clone
    Queries - Concurrent Requests
    Personalizing the Login Page
    Versions of Apps techstack
    Replacing Jinitiator with JRE
    Reloading APPS Java Class Object
    Count total number of Users
    ICX: Session Timeout
    Generate Stack trace For Forms
    Configure Apache on ports < 1024
    Apps Hot backup Cloning
    Recover if Context file is lost
    Redirect Rapid Install Login
    How to Clean Non-existent Nodes
    Remove Portal Schema from 11i
    Clean Concurrent Manger Tables
    Creating custom Application
    Enable f60cgi direct login
    Downtime in restricted mode
    Maintenance Mode in Apps 11i
    Check if on Autoconfig latest Patch
    Patch Troubleshooting
    Apply Patch when adpatch is running
    Check Forms Patch Set Level
    Check AOL Table is Locked
    Java version Used by Jserv
    Verify opertion of reports server
    Relink Oracle Applications 11i
    Change IP Address in Applications

    Add to Technorati Favorites

  • Common Apps 11i and R12

    Scripts: monitor concurrent jobs
    Create User Event trace
    Apps Interview Qs-Part I
    Compile Invalid Objects in APPS
    Setup Password Security
    Create Web Link to Forms Menu
    Pinning Oracle Apps Objects
    Change IP in Oracle Apps
    Check if a Product is Installed
    Forms Runtime Diagnostics
    Access Apps from Linux client
    Recover if context file is lost
    Redirect Rapid Install Page
    Check if a patch was applied
    Check apps components version
    E-business Suite System survey
    Scripts to monitor jdbc conn
    Distribute Load of Conc Req
    Check if a product is installed
  • Database 9i-10g-11g

    Analyze Oracle Statspack
    SQL: Command line history
    How to recreate OraInventory
    Oracle DBA Cheat Sheet
    Formatted Explain Plan
    Recovery Catalog for RMAN
    RMAN Duplicate on new host
    RMAN Duplicate on same host
    Installation of 11G
    Background processes -11G
    Alert Logfiles in 11G
    Datapump:Specify a query
    Copy schemas to new db
    Flashback database in 10G
    Flashback Drop 10G
    Flashback table/query 10G
    Clone Database on same machine
    Move Database to diff Platform
    Sizing Undo tablespace
  • Oracle 10g AS

    Using Virtual Hostname with AS
    Relinking 10g Application server
  • Collaboration Suite

    Installation of OCS
  • Fusion Middleware
  • Unix / Linux

    Command Reference
  • Certifications
  • E-Mail Subscription

    Enter your email address:

    Delivered by FeedBurner

    Search
    Only search this Blog
    Add Ons

     Subscribe in a reader



    Add to Google Reader or Homepage

    Quest Foglight - Oracle E-Business Management
    Monday, February 2, 2009
    Email this  |  Share on Facebook  |  Subscribe to this feed

     

    Oracle E-Business Management       

    Foglight helps organizations achieve application service levels and improve

    Oracle E-Business application performance.

    image

     

    http://www.quest.com/application-and-service-management-technology/oracle-e-business.aspx

    Labels:


    Read more!


    Translate 
    Posted by Famy Rasheed   0 comments
    Symantec i3 for Oracle Applications
    Email this  |  Share on Facebook  |  Subscribe to this feed

     

    Check this out !

    image

     

    http://www.linxcel.co.uk/software_symantec_I3oracleapp.html


    Read more!


    Translate 
    Posted by Famy Rasheed   0 comments
    Steps to Create a Read-Only APPS Schema
    Email this  |  Share on Facebook  |  Subscribe to this feed

     

    Here we are going to create a schema similar to the APPS schema but has only read-only prviliges.


    Steps:

    1. Create the user for the required schema:

    SQL> connect system/manager
    SQL> create user <your_user> identified by <your_user_password> default tablespace
    <tablespace_to_assign_to_user> temporary tablespace temp;

    2. Grant connect and resource privileges to your user:

    SQL> connect system/manager
    SQL> grant connect, resource to <your_user>;

    3. Use the following select statement to generate a script that will grant privileges on APPS
    objects to your user.
    Note the following:

    A. This select statement should generate a script that will grant almost all required permissions
    to a user called MYUSER.
    B. This select statement is a guide only. You should work with your DBA to enhance it according to
    your requirements.

    SELECT 'GRANT '
    || DECODE(O.OBJECT_TYPE,'TABLE','SELECT',
    'VIEW','SELECT',
    'EXECUTE')
    || ' ON '
    || DECODE(O.Owner,'PUBLIC','',O.Owner || '.')
    || '"'
    || O.OBJECT_NAME
    || '"'
    || ' TO MYUSER;' COMMAND
    FROM ALL_OBJECTS O
    WHERE O.OBJECT_TYPE IN ('TABLE','PACKAGE','PACKAGE BODY','PROCEDURE', 'VIEW','FUNCTION')
    UNION
    SELECT 'GRANT '
    || DECODE (O2.object_type, 'TABLE', 'SELECT',
    'VIEW', 'SELECT',
    'EXECUTE')
    || ' ON '
    || DECODE(O.Owner,'PUBLIC','',O.Owner || '.')
    || '"'
    || O.object_name
    || '"'
    || ' TO MYUSER;' COMMAND
    FROM ALL_OBJECTS O
    , ALL_OBJECTS O2
    , DBA_SYNONYMS S
    WHERE O.object_type = 'SYNONYM'
    AND O.object_name = S.synonym_name
    AND O2.object_name = S.table_name
    AND O2.OBJECT_TYPE IN ('TABLE','PACKAGE','PACKAGE BODY','PROCEDURE', 'VIEW','FUNCTION')

    4. Use the following select statement to generate a script that will create synonyms in
    <your_user> schema for all objects owned by APPS.

    SELECT 'CREATE SYNONYM MYUSER.'
    || O.OBJECT_NAME
    || ' FOR APPS.'
    || O.OBJECT_NAME
    || ';' COMMAND
    FROM DBA_OBJECTS O
    WHERE O.Owner = 'APPS'

    5. Run the above two scripts as SYS user.

    Labels:


    Read more!


    Translate 
    Posted by Famy Rasheed   1 comments
    Now Live: R12: Install, Patch and Maintain Applications (1Z0-238)
    Email this  |  Share on Facebook  |  Subscribe to this feed

     

    Upgrade your Oracle Applications Certifications

     

    image

    Labels:


    Read more!


    Translate 
    Posted by Famy Rasheed   0 comments
    XClone - Automated Solution for Cloning Oracle Apps
    Email this  |  Share on Facebook  |  Subscribe to this feed

     

    XClone is the world's first completely automated solution for cloning

    Oracle databases, applications and and middleware solutions.

     

    image

     

    image

     

    http://www.babboo.com/

    Labels:


    Read more!


    Translate 
    Posted by Famy Rasheed   0 comments
    Concurrent Request Phase and Status
    Tuesday, August 26, 2008
    Email this  |  Share on Facebook  |  Subscribe to this feed

     

    A concurrent request has a life cycle consisting of the following phases:

    pending, running, completed, and inactive.

    During each phase, a concurrent request has a specific condition or status. The below table

    lists each phase/status combination and describes its meaning in relation to a request.

     

    Concurrent Request Phase and Status

    Phase Status Description
    PENDING Normal Request is waiting for the next available manager.
      Standby Program to run request is incompatible with other program(s) currently running.
      Scheduled Request is scheduled to start at a future time or date.
      Waiting A child request is waiting for its Parent request to mark it ready to run. For example, a request in a request set that runs sequentially must wait for a prior request to complete.
    RUNNING Normal Request is running normally.
      Paused Parent request pauses for all its child requests to finish running. For example, a request set pauses for all requests in the set to complete.
      Resuming All requests submitted by the same parent request have completed running. The Parent request resumes running.
      Terminating Request is terminated by choosing the Cancel Request button in Requests window.
    COMPLETED Normal Request completed successfully.
      Error Request failed to complete successfully.
      Warning Request completed with warnings. For example, a request is generated successfully but fails to print.
      Cancelled Pending or Inactive request is cancelled by choosing the Cancel Request button in the Requests window.
      Terminated Request is terminated by choosing the Cancel Request button in the Requests window.
    INACTIVE Disabled Program to run request is not enabled. Contact your system administrator.
      On Hold Pending request is placed on hold by choosing the Hold Request button in the Requests window.
      No Manager No manager is defined to run the request. Check with your system administrator. A status of No Manager is also given when all managers are locked by run-alone requests.

    Individual Request Progress

    Generally when you submit a request, its phase is Pending, which means that it has not yet

    started running. When it does start running, its phase changes to Running. Upon completion

    the status of the request becomes either Success, Warning or Error. If your request ends in

    warning or error, you can use the Special Menu to select Diagnostics from the Requests

    window to view any diagnostic messages stored in the log file.

    Request Set Progress for Stages

    When you submit a request set, all the requests in a stage run simultaneously and the phase

    and status of the set begins as Pending Normal until an available concurrent manager can

    process it. When a concurrent manager becomes available, the stages's phase and status

    change to Running Paused as the stage waits for all of its requests to finish. Then the stage

    changes from Running Paused to Running Normal to write completion information in the

    report and log files. Finally, the stage phase changes to Completed and its status becomes

    Success, Warning, or Error.

    Progress of Individual Requests in a Stage

    When a stage submits its requests, all requests start as Pending Normal, then change to

    Running Normal, and finally end as either Completed Success, Completed Warning, or

    Completed Error.

    Progress of Linked Stages

    When you submit a request set with more than one stage, the request set submits all

    the stages but only runs one stage at a time, ensuring that each stage completes before

    submitting the next. Each stage shows a phase of Pending and a status of Normal while

    it waits for a concurrent manager to process it. As the next available concurrent manager

    processes the stage, the request set phase and status changes to Running and Paused,

    as the first stage begins to run. After each stage finishes, the request set temporarily

    changes to a Normal status to check whether the stage ended in error and to determine

    whether to stop or which stage should be processed next based on how you linked the

    stages when you defined the request set.

    Once the check is done for a completed stage, the set goes back to Paused status during

    which the next stage runs. The set alternates between Normal and Paused status for each

    stage in the set. The set itself resumes running (Running Normal), after all the requests

    finish, to write completion information in the report and log files. The set ends in a

    Completed phase, either with Success, Warning or Error status. A request set ends when

    a stage ends with a completion status that does not link to a subsequent stage.


    Read more!


    Translate 
    Posted by Famy Rasheed   0 comments
    Implementing Load Balancing On APPS - Docs For Specific Load Balancer Hardware
    Saturday, July 19, 2008
    Email this  |  Share on Facebook  |  Subscribe to this feed

     

    Customer wishing to implement load balancing should focus their attention firstly on the following note depending on their version of E-Business Suite:

    R11i
    Note 217368.1 Advanced Configurations and Topologies for Enterprise Deployments of E-Business Suite 11i
    See Option 2.2. HTTP Layer Hardware Load Balancing

    R12
    Note 380489.1 Using Load-Balancers with Oracle E-Business Suite Release 12

    The most common load balancer vendors chosen by our customers are F5 who produce the BigIp solution and Cisco which make the Context Switch Module (CSM) and Application Control Engine Module (ACE). If you are implementing a Cisco or F5 solution please see the referenced documents below.

    For a complete list of tested load balancers see:
    http://www.oracle.com/technology/products/ias/hi_av/tested_lbr_fw_sslaccel.html
    Note: this list is specific to iAS 10g and therefore specific to R12.
    Note: Oracle does not certify Load Balancer products

    If you are implementing a Cisco or F5 Load balancer please use the following vendor created deployment along with the above Oracle documentation to implement your load balancer

    F5
    Oracle E-Business Suite 11i (BIG-IP v9.x)
    Oracle E-Business Suite 11i (BIG-IP v4.x)
    Oracle E-Business Suite 12 (BIG-IP LTM, WebAccelerator, FirePass)

    Cisco
    E-Business Suite Deployment Guide for Application Availability and Security

    Oracle customers may also consider using Oracle Web Cache as a load balancer. If this is of interest to you please consult the following documentation:

    R11i
    Note 306653.1 Installing and Configuring Web Cache 10.1.2 and Oracle E-Business Suite 11i
    See Section 7: Configuring Oracle Web Cache as a Load Balancer

    R12
    Note 380486.1 Installing and Configuring Web Cache 10g and Oracle E-Business Suite 12
    See Section 6: Configuring Oracle Web Cache as a Load Balancer


    Read more!


    Translate 
    Posted by Famy Rasheed   1 comments
    About Me

    Name: Famy Rasheed
    Home: Bangalore, India

    about me:

    I am working as Oracle Applications DBA specializing in E-Business Suite 11i/12i and Fusion Middleware.

    See my complete profile

    Recent Entries
    Archives
    Links
    Powered by



    BLOGGER