Output Post Processor (OPP) â An Overview - Oracle Application DBA
Recommend Documents
11> Import data via a network link in Oracle 10g. 12> Reorganize tablespaces
using Oracle 10g Data Pump. 13> Moving data between versions. 14> Monitor ...
Oracle Architectural Components. Oracle DBA Course ... 2: Install the Oracle
Database Software. 3: Plan the ... Overview of Oracle server architecture,
identifying ...
Prerequisites for installing the DAC Client and Server on Windows are the
following: ... file Oracle Business Intelligence Data Warehouse Administration
Console.
Feb 17, 2016 - Oracle database logo should be there... but as of this page it can't be: ...Remember that you are general
(Oracle University Standard Training) ... Oracle Database 10g: Introduction to
SQL ... Course Material: Standard Oracle University 10g Course ware materials.
The Complete Modern Web Application Development Solution ......... 8. Single Database ..... Android, Blackberry, and Win
Oracle Database 2 Day DBA 11g Release 2 (11.2). E10897-10 ... Oracle
Corporation and its affiliates disclaim any liability for any damages caused by use
of ...
Oracle Database 2 Day DBA, 10g Release 1 (10.1). Part No. ... Oracle is not
responsible for the availability of, or any content provided on, third-party Web
sites.
Oracle Database 2 Day DBA, 10g Release 2 (10.2). B14196-03 ... Oracle
Corporation and its affiliates disclaim any liability for any damages caused by use
of ...
Student. Outcome. DBA Alumni. Community. Entry Requirements: A Master's Degree in a management-related discipline (at le
Oracle Warehouse Builder enables you to deliver on the knowledge
requirements ... Specialized functionality such as data profiling for example, ....
probably are surprised to see that the tool to delivers a first cut (template) report
for you to .
8) Creating and Managing ASM Cluster Filesystems ... 70) Postâdatabase Creation Tasks ... 78) Starting And Stopping RA
Loading⦠Page 1. Whoops! There was a problem loading more pages. cours dba oracle pdf. cours dba oracle pdf. Open. Ext
Download now. Click here if your download doesn't start automatically. Page 1 of 1. oracle dba commands pdf reference. o
oracle dba daily activities pdf. oracle dba daily activities pdf. Open. Extract. Open with. Sign In. Main menu. Displayi
Jul 4, 2011 ... Oracle Database Express Edition 2 Day DBA, 11g Release 2 (11.2). E18804- ...
Oracle Corporation and its affiliates disclaim any liability for any ...
Page 1 sur 5. D50317GC20. Oracle Database 11g: Performance Tuning DBA
Release 2. What you will learn. This course starts with an unknown database that
...
FRANCISCO MUNOZ ALVAREZ. 8/9i/10g/11g OCP, RAC OCE, AS OCA, E-
Business OCP , SQL /PLSQL. OCA , Oracle 7 OCM. Oracle 7 , Oracle 11gR2 and
...
Oracle Apps DBA Training Contents. 1) Oracle Applications Background. 2) Oracle Applications E-business Suite Current,Lo
Page 1 of 1. File: Oracle dba workshop 1 pdf. Download now. Click here if your download doesn't start automatically. Pag
Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. oracle dba syllabus 10g
ORACLE DBA Course Contents. Page 1 of 5. Proprietary and Confidential.
Duration : 6 Weekends (Sat & Sun : 4 Hours Each Day). No. Of Hours : 48 Hours.
Output Post Processor (OPP) â An Overview - Oracle Application DBA
Concurrent processing uses the Output Post Processor (OPP) to enforce post-processing ... This implies that the queue mo
Author – A.Kishore/Sachin http://appsdba.info
Output Post Processor (OPP) – An Overview
Concurrent processing uses the Output Post Processor (OPP) to enforce post -processing actions for concurrent requests.
Post-processing actions are actions taken on concurrent request output. An example of a post-processing action is that used in publishing concurrent requests with XML Publisher.
The Output Post Processor (OPP) is an enhancement to Concurrent Processing and is designed to support XML Publisher as post-processing action for concurrent requests. If a request is submitted with an XML Publisher template specified as a layout for the concurrent request output, then after the concurrent manager finishes running the concurrent program, it will contact the OPP to apply the XML Publisher template and create the final output.
A concurrent manager contacts an available OPP process when a running concurrent request needs an OPP processing action. Concurrent manager uses a local OPP process (that, is, on the same node) by default, but will choose a remote OPP if no local OPP process is available.
There should always be at least one OPP process active in the system. If no OPP service is available, completed requests that require OPP processing will complete with a status of Warning.
The Output Post Processor makes use of the Oracle Streams Advanced Queuing (AQ) database feature. Every OPP service instance monitors the FND_CP_GSM_OPP_AQ queue for new messages and this queue has been created with no value specified for primary_instance (link). This implies that the queue monitor scheduling and propagation is done in any available instance. In other words, ANY OPP service instance may pick up an incomming message independent of the node on which the concurrent request ran.
Maximum Memory Usage Per Process: The maximum amount of memory or maximum Java heap size a single OPP process can use is by default set to 512MB. This value is seeded by the Loader Data File: $FND_TOP/patch/115/import/US/afoppsrv.ldt which specifies that the DEVELOPER_PARAMETERS is "J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx512m".
1
Author – A.Kishore/Sachin http://appsdba.info
Determine the current maximum Java heap size: SELECT service_id, service_handle, developer_parameters FROM fnd_cp_services WHERE service_id = (SELECT manager_type FROM fnd_concurrent_queues WHERE concurrent_queue_name = 'FNDCPOPP'); SERVICE_ID SERVICE_HANDLE DEVELOPER_PARAMETERS ---------- -------------- -------------------------------------------------------1091 FNDOPP J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx512m
Increase the maximum Java heap size for the OPP to 1024MB (1GB): UPDATE fnd_cp_services SET developer_parameters = 'J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx1024m' WHERE service_id = (SELECT manager_type FROM fnd_concurrent_queues WHERE concurrent_queue_name = 'FNDCPOPP'); The OPP queue can be Recreated the using $FND_TOP/patch/115/sql/afopp002.sql file as 'APPLSYS' user. On running the script you will be prompted for username and password.
There are two new profiles options that can be used to control the timeouts: Profile Option : Concurrent:OPP Response Timeout Internal Name : CONC_PP_RESPONSE_TIMEOUT Description : Specifies the amount of time a manager waits for OPP to respond to its request for post processing. Profile Option : Concurrent:OPP Process Timeout Internal Name : CONC_PP_PROCESS_TIMEOUT Description : Specifies the amount of time the manager waits for the OPP to actually process the request.