<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-2411185029102809641</atom:id><lastBuildDate>Wed, 27 Aug 2025 12:42:26 +0000</lastBuildDate><category>11i</category><category>11i / R12</category><category>R12</category><category>Database</category><category>10gAS</category><category>Misc</category><category>Certify</category><category>OCS</category><category>Unix-Linux</category><title>Oracle Applications APPSLab</title><description>- Sharing Knowledge on Oracle E-Business Suite Applications, Database, Fusion Middleware !!!</description><link>http://onlineappsdba.blogspot.com/</link><managingEditor>noreply@blogger.com (Famy Rasheed)</managingEditor><generator>Blogger</generator><openSearch:totalResults>103</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><language>en-us</language><xhtml:meta content="noindex" name="robots" xmlns:xhtml="http://www.w3.org/1999/xhtml"/><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-6082136706980753684</guid><pubDate>Fri, 11 Mar 2016 16:31:00 +0000</pubDate><atom:updated>2016-03-11T22:01:42.050+05:30</atom:updated><title>Oracle E-Business Suite on Oracle Cloud</title><atom:summary type="text">


Run Oracle E-Business Suite on the Oracle Cloud today!




By running Oracle E-Business Suite on Oracle Cloud, you can reduce time and cost for new projects, increase business agility, better manage growth, and increase the productivity of your global IT workforce.

Oracle E-Business Suite on Oracle Cloud FAQ

LEARN HOW TO USE ORACLE E-BUSINESS SUITE ON ORACLE CLOUD

Get hands-on, step-by-step</atom:summary><link>http://onlineappsdba.blogspot.com/2016/03/oracle-e-business-suite-on-oracle-cloud.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-5417699390648343819</guid><pubDate>Tue, 08 Mar 2016 11:57:00 +0000</pubDate><atom:updated>2016-03-08T17:27:26.478+05:30</atom:updated><title>SSL Setup on EBS 12.2 Environments</title><atom:summary type="text">
&lt;!--[if gte mso 9]&gt;
 
  Normal
  0
  
  
  
  
  false
  false
  false
  
  EN-US
  X-NONE
  X-NONE
  
   
   
   
   
   
   
   
   
   
   
   
  
  MicrosoftInternetExplorer4
  
   
   
   
   
   
   
   
   
   
   
   
  
&lt;![endif]--&gt;
&lt;!--[if gte mso 9]&gt;
 
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
</atom:summary><link>http://onlineappsdba.blogspot.com/2016/03/ssl-setup-on-ebs-122-environments_8.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-8385093845948522333</guid><pubDate>Tue, 08 Mar 2016 11:44:00 +0000</pubDate><atom:updated>2016-03-08T17:14:39.888+05:30</atom:updated><title>Create a Clean oraInventory in Release 12.2</title><atom:summary type="text">
1. Clean the current oraInventory location:Check the oraInventory location from the /etc/oraInst.loc fileBackup and clean that directoryCustomer can write down the name of all entries from the old inventory from /ContentsXML/inventory.xml to use during the creation of the new OHs2. Add the RDBMS Oracle Home first to the new oraInventory:Go to $ORACLE_HOMEsource the environment file .envcd $</atom:summary><link>http://onlineappsdba.blogspot.com/2016/03/create-clean-orainventory-in-release-122.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-3219659000250786353</guid><pubDate>Thu, 28 May 2015 19:11:00 +0000</pubDate><atom:updated>2015-05-29T00:41:07.570+05:30</atom:updated><title>EBS Workflow Service Components Status</title><atom:summary type="text">



Good piece of script to identify the status of the workflow components from sql prompt.This is alternate option to see workflow service components status from OAM GUI.Run the below SQL as apps usercol component_id format 999999
col startup_mode format a10
col component_status format a10
col component_name format a50
set linesize 125
set pagesize 25
select component_id, startup_mode,</atom:summary><link>http://onlineappsdba.blogspot.com/2015/05/ebs-workflow-service-components-status.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-504925246564209801</guid><pubDate>Thu, 28 May 2015 19:08:00 +0000</pubDate><atom:updated>2015-05-29T00:38:20.052+05:30</atom:updated><title>Search and Replace String across multiple files in Linux</title><atom:summary type="text">

  perl -pi -e 's/old_string/new_string/g' file_pattern


  perl -pi -e 's/temp/tmp/g' *.html

  /happy/


To correctly replace it, you would have to escape the forward slashes with the escape character (the backslash) so that the forward slashes aren't interpreted as commands. Your replacement string would need to be:
  \/happy\/




</atom:summary><link>http://onlineappsdba.blogspot.com/2015/05/search-and-replace-string-across.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-3404432870753097388</guid><pubDate>Mon, 22 Dec 2014 17:12:00 +0000</pubDate><atom:updated>2014-12-22T22:42:59.098+05:30</atom:updated><title>HowTo Restore The Weblogic User Password On EBS 12.2 if Lost Or Forgotten</title><atom:summary type="text">
The steps are mentioned on the EBS Setup Guide for 12.2 which can be downloaded from the link : https://docs.oracle.com/cd/E26401_01/doc.122/e22953/T174296T589913.htm (12.2 Setup Guide) under the topic&amp;nbsp; "If the Admin Password of an EBS WebLogic Domain is lost or forgotten"

Also refer for more details :-
Procedure To Restore The Weblogic User Password On EBS 12.2 In Case Of Lost Or </atom:summary><link>http://onlineappsdba.blogspot.com/2014/12/howto-restore-weblogic-user-password-on.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-142935060065230500</guid><pubDate>Mon, 10 Mar 2014 03:39:00 +0000</pubDate><atom:updated>2014-03-10T09:09:53.333+05:30</atom:updated><title>Fusion Applications P4FA Patches</title><atom:summary type="text">&amp;nbsp; High levels to apply P4FA:  Shutdown FMW, IDM and DB (Transaction, OID and OIM database) services  Backup Environment  * Apply patches to FMW Oracle Homes (excluding ATGPF/Generic and ATGPF/Database patches)  * Apply patches to IDM Oracle Homes  * Apply RDBMS patches to Transaction, OID and OIM ** Oracle Homes  Start DB (Transaction, OID and OIM database) services  Apply RDBMS patches post</atom:summary><link>http://onlineappsdba.blogspot.com/2014/03/fusion-applications-p4fa-patches.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-435847905483209886</guid><pubDate>Thu, 26 Sep 2013 13:00:00 +0000</pubDate><atom:updated>2013-09-26T18:30:42.537+05:30</atom:updated><title>EBS12.2 How does Online Patching work on the application tier?</title><atom:summary type="text">&amp;nbsp; During Release 12.2 installation, Rapid Install will lay down two copies of the application tier file system. One of the copies will be labeled as the run file system, and the other as the patch file system. Subsequently, when a patch is applied, adop will:    Synchronize the contents of the run file system to the patch file system. This happens during the prepare phase.  Perform patching </atom:summary><link>http://onlineappsdba.blogspot.com/2013/09/ebs122-how-does-online-patching-work-on.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-4276376687846847327</guid><pubDate>Thu, 26 Sep 2013 11:50:00 +0000</pubDate><atom:updated>2013-09-26T17:20:49.331+05:30</atom:updated><title>Stage R12 - 12.2 Software for Installation</title><atom:summary type="text">&amp;nbsp; As EBS R12 - 12.2 is released officially, for installing , Download all the software 12.2&amp;nbsp; from edelivery.oracle.com. Here are the steps to stage 12.2. software First unzip start CD parts in the staging directory “Stage” as in this example. cd /u01/oracle/122/Stageunzip ../V35215-01_1of3.zipunzip ../V35215-01_2of3.zipunzip ../V35215-01_3of3.zip Go to startCD/Disk1/rapidwiz/bin cd /u01</atom:summary><link>http://onlineappsdba.blogspot.com/2013/09/stage-r12-122-software-for-installation.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-9120883239504596493</guid><pubDate>Mon, 10 Jun 2013 07:24:00 +0000</pubDate><atom:updated>2013-06-10T12:54:17.845+05:30</atom:updated><title>What&amp;#39;s new in EBS 12.2?</title><atom:summary type="text">New or changed technology-related features in EBS 12.2 include:  Streamlined installation:   Use of native installation tools for Oracle Fusion Middleware and Oracle Database technology stack components.  Option for installing EBS 12.2 on to existing database servers.  Capability of installation into existing Real Application Clusters environments.  Database deployment on Automatic Storage </atom:summary><link>http://onlineappsdba.blogspot.com/2013/06/what-new-in-ebs-122.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-1303452951238513232</guid><pubDate>Mon, 10 Jun 2013 05:43:00 +0000</pubDate><atom:updated>2013-06-10T11:14:19.255+05:30</atom:updated><title>Concurrent Processing - CP Analyzer for E-Business Suite</title><atom:summary type="text">The Concurrent Processing Analyzer is a Self-Service Health-Check script which reviews the overall Concurrent Processing Footprint, analyzes the current configurations and settings for the environment providing feedback and recommendations on Best Practices.   This is a non-invasive script which provides recommended actions to be performed on the instance it was run on and can be run at any time.</atom:summary><link>http://onlineappsdba.blogspot.com/2013/06/concurrent-processing-cp-analyzer-for-e.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-5697948698054332867</guid><pubDate>Tue, 08 Mar 2011 06:27:00 +0000</pubDate><atom:updated>2011-03-08T11:57:02.328+05:30</atom:updated><title>Cloning SSO-Enabled Environments in E-Business Suite</title><atom:summary type="text">
This is already discussed in Steven Chan's Blog article&amp;nbsp;http://blogs.oracle.com/stevenChan/2006/05/11/&amp;nbsp;and much of this note is a straight copy from this article. &amp;nbsp;Please review this blog article in it's entirety before proceeding.
If you're willing to experiment a bit, the following are general guidelines to point you in the right direction.&amp;nbsp; Some customers and Oracle </atom:summary><link>http://onlineappsdba.blogspot.com/2011/03/cloning-sso-enabled-environments-in-e.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-4112231087407280111</guid><pubDate>Tue, 08 Mar 2011 06:23:00 +0000</pubDate><atom:updated>2011-03-08T11:53:55.692+05:30</atom:updated><title>Is it Possible to Clone an SSL Enabled E-Business Suite Middle Tier?</title><atom:summary type="text">The Rapidclone utility does not support like for like cloning of an SSL enabled E-business suite middle tier.
Note 230672.1  Cloning Oracle Applications Release 11i with Rapid Clone
Note 406982.1  Cloning Oracle Applications Release 12 with Rapid Clone

The problem can be broken down into 3 issues

1:- File system changes.

The location of the SSL files on the clone is different to that from the </atom:summary><link>http://onlineappsdba.blogspot.com/2011/03/is-it-possible-to-clone-ssl-enabled-e.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-8799161023449640097</guid><pubDate>Tue, 08 Mar 2011 06:16:00 +0000</pubDate><atom:updated>2011-03-08T11:46:57.792+05:30</atom:updated><title>Should I Implement a Shared Appl Top? And if so How?</title><atom:summary type="text">1:- Is it recommended to implement a shared APPL_TOP?

Both single APPL_TOP and shared APPL_TOP are supported. Full details of the requirement can be found in

Note.233428.1 Sharing the Application Tier File System in Oracle Applications Release 11i 
Note.384248.1 Sharing The Application Tier File System in Oracle E-Business Suite Release 12

There is no official Oracle support document that </atom:summary><link>http://onlineappsdba.blogspot.com/2011/03/should-i-implement-shared-appl-top-and.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-7270922147783084373</guid><pubDate>Tue, 08 Mar 2011 06:07:00 +0000</pubDate><atom:updated>2011-03-08T11:37:31.368+05:30</atom:updated><title>How to Gather Statistics on Custom Schemas for Ebusiness Suite 11i and R12?</title><atom:summary type="text">

To gather statistics for Oracle Applications Ebusiness Suite 11i or R12 modules you should use the concurrent programs 'Gather Schema Statistics', 'Gather Table Statistics', or run 'FND_STATS'.

In order to run the programs 'Gather Schema Statistics', 'Gather Table Statistics', or run 'FND_STATS'&amp;nbsp; for a custom schema, the schema must be registered with the Application.

To register an </atom:summary><link>http://onlineappsdba.blogspot.com/2011/03/how-to-gather-statistics-on-custom.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-8375505843731986706</guid><pubDate>Fri, 18 Jun 2010 15:44:00 +0000</pubDate><atom:updated>2010-06-20T13:24:35.087+05:30</atom:updated><title>Compile forms in Release 12</title><atom:summary type="text">Follow the instructions below to compile your forms in Release 121:- Log into the forms tier.2:- Set the applications environment3:- Ensure that the $FORMS_PATH includes $AU_TOP/resource and $AU_TOP/resource/stub, for example  echo $FORMS_PATH /u01/oracle/TEST/apps/apps_st/appl/au/12.0.0/resource:/u01/oracle/TEST/apps/apps_st/appl/au/12.0.0/resource/stub  4:- Compile the forma:- If you are using </atom:summary><link>http://onlineappsdba.blogspot.com/2010/06/compile-forms-in-release-12.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-8993227364023481416</guid><pubDate>Fri, 18 Jun 2010 15:19:00 +0000</pubDate><atom:updated>2010-06-18T20:50:41.309+05:30</atom:updated><title>Shared Application File System in R12 and 11i</title><atom:summary type="text">E-Business suites (EBS) 11i and R12 both support the sharing of the Applications Tier File System. Sharing a file system in EBS involves sharing a volume between 2 or more physical servers. In a shared Application Tier File System (ATFS) implementation, the application services can be configured to run (utilize CPU and memory) on any server sharing the ATFS simply by changing some context file </atom:summary><link>http://onlineappsdba.blogspot.com/2010/06/shared-application-file-system-in-r12.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-3421181933127427318</guid><pubDate>Sun, 01 Feb 2009 19:44:00 +0000</pubDate><atom:updated>2009-02-02T01:14:06.055+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Misc</category><title>Quest Foglight - Oracle E-Business Management</title><atom:summary type="text">&amp;nbsp; Oracle E-Business Management&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;   Foglight helps organizations achieve application service levels and improve  Oracle E-Business application performance.   &amp;nbsp; http://www.quest.com/application-and-service-management-technology/oracle-e-business.aspx  </atom:summary><link>http://onlineappsdba.blogspot.com/2009/02/quest-foglight-oracle-e-business.html</link><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://lh5.ggpht.com/_qPvKqQ8OPro/SYX7hJtXBDI/AAAAAAAABcg/6FB_DirZfoA/s72-c/image_thumb%5B1%5D.png?imgmax=800" width="72"/><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-2530211955893761647</guid><pubDate>Sun, 01 Feb 2009 19:35:00 +0000</pubDate><atom:updated>2009-02-02T01:05:54.667+05:30</atom:updated><title>Symantec i3 for Oracle Applications</title><atom:summary type="text">&amp;nbsp;  Check this out !   &amp;nbsp; http://www.linxcel.co.uk/software_symantec_I3oracleapp.html  </atom:summary><link>http://onlineappsdba.blogspot.com/2009/02/symantec-i3-for-oracle-applications.html</link><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://lh4.ggpht.com/_qPvKqQ8OPro/SYX5mV8RAfI/AAAAAAAABcY/tfEOeWSuOoE/s72-c/image_thumb%5B2%5D.png?imgmax=800" width="72"/><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-3501783884662950522</guid><pubDate>Sun, 01 Feb 2009 19:31:00 +0000</pubDate><atom:updated>2010-06-14T21:46:17.088+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">11i / R12</category><title>Steps to Create a Read-Only APPS Schema</title><atom:summary type="text">&amp;nbsp; 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&amp;gt; connect system/manager SQL&amp;gt; create user &amp;lt;your_user&amp;gt; identified by &amp;lt;your_user_password&amp;gt; default tablespace &amp;lt;tablespace_to_assign_to_user&amp;gt; temporary tablespace temp;  2. Grant connect and resource privileges to </atom:summary><link>http://onlineappsdba.blogspot.com/2009/02/steps-to-create-read-only-apps-schema.html</link><thr:total>1</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-2202733378517732010</guid><pubDate>Sun, 01 Feb 2009 19:25:00 +0000</pubDate><atom:updated>2009-02-02T00:55:16.622+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Misc</category><title>Now Live: R12: Install, Patch and Maintain Applications (1Z0-238)</title><atom:summary type="text">&amp;nbsp; Upgrade your Oracle Applications Certifications &amp;nbsp;   </atom:summary><link>http://onlineappsdba.blogspot.com/2009/02/now-live-r12-install-patch-and-maintain.html</link><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://lh4.ggpht.com/_qPvKqQ8OPro/SYX3G7XjVVI/AAAAAAAABcQ/mt5R6NthCmg/s72-c/image_thumb%5B2%5D.png?imgmax=800" width="72"/><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-1092448198917948700</guid><pubDate>Sun, 01 Feb 2009 19:16:00 +0000</pubDate><atom:updated>2009-02-02T00:48:39.696+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Misc</category><title>XClone - Automated Solution for Cloning Oracle Apps</title><atom:summary type="text">&amp;nbsp; XClone is the world's first completely automated solution for cloning  Oracle databases, applications and and middleware solutions. &amp;nbsp;   &amp;nbsp;   &amp;nbsp; http://www.babboo.com/  </atom:summary><link>http://onlineappsdba.blogspot.com/2009/02/xclone-automated-solution-for-cloning.html</link><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://lh3.ggpht.com/_qPvKqQ8OPro/SYX1BnanH6I/AAAAAAAABcA/8FRDKnRjPDk/s72-c/image_thumb%5B4%5D.png?imgmax=800" width="72"/><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-4329750301023751140</guid><pubDate>Tue, 26 Aug 2008 14:27:00 +0000</pubDate><atom:updated>2008-08-26T19:57:33.172+05:30</atom:updated><title>Concurrent Request Phase and Status</title><atom:summary type="text">&amp;nbsp; 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.  &amp;nbsp;  Concurrent Request Phase and Status      Phase  Status  Description   PENDING  </atom:summary><link>http://onlineappsdba.blogspot.com/2008/08/concurrent-request-phase-and-status.html</link><thr:total>0</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-5764980917434333508</guid><pubDate>Sat, 19 Jul 2008 06:16:00 +0000</pubDate><atom:updated>2008-07-19T11:46:28.809+05:30</atom:updated><title>Implementing Load Balancing On APPS - Docs For Specific Load Balancer Hardware</title><atom:summary type="text"> &amp;nbsp;      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 </atom:summary><link>http://onlineappsdba.blogspot.com/2008/07/implementing-load-balancing-on-apps.html</link><thr:total>1</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2411185029102809641.post-250087848988985093</guid><pubDate>Sat, 28 Jun 2008 15:46:00 +0000</pubDate><atom:updated>2008-06-28T21:16:57.557+05:30</atom:updated><title>Size UNDO tablespace for Automatic Undo Management</title><atom:summary type="text">&amp;nbsp;      Sizing an UNDO tablespace requires three pieces of data. (Note:Overall consideration for peak/heavy vs normal system activity should be taken into account when peforming the calculations.) (UR) UNDO_RETENTION in seconds (UPS) Number of undo data blocks generated per second (DBS) Overhead varies based on extent and file size (db_block_size) UndoSpace = [UR * (UPS * DBS)] + (DBS * 24) </atom:summary><link>http://onlineappsdba.blogspot.com/2008/06/size-undo-tablespace-for-automatic-undo.html</link><thr:total>1</thr:total><author>noreply@blogger.com (Famy Rasheed)</author></item></channel></rss>