Year: 2017
What is the use of MMON background process in Oracle Database?
MMON (Manageability Monitor) is a background process introduced in Oracle 10g. It gathers memory statistics (snapshots) and stores this information in the AWR (automatic workload repository). MMON is also responsible for issuing alerts for metrics that exceed their thresholds.
How to Compile Forms in Oracle Applications Release 11i and Release 12?
Steps to compile forms in Oracle Applications Release 12.1.x and 12.2.x
Login to Application Tier node as applmgr user
Change to $AU_TOP/forms/US
Execute the Below command to generate form files.
frmcmp_batch userid=apps/<password> module=formname.fmb
output_file=$PROD_TOP/forms/US/<name>.fmx module_type=form batch=no compile_all=special
After execution of the above command, verify there are no compilation errors in output displayed and the fmx is created succesfully.
Steps to compile forms in Oracle Applications Release 11i
Login to Application Tier node as applmgr user
Change to $AU_TOP/forms/US
Execute the Below command to generate form files.
f60gen module=$AU_TOP/forms/US/<custom_form>.fmb userid=apps/<passwd> output_file=$PRODUCT_TOP/forms/<customformname>.fmx module_type=form compile_all=yes
Tips:
Use command “f60gen help=y” or “frmcmp_batch.sh help=y” to find the optional parameters.
Using Compile_all= yes changes cached version in the source file in addition to compiling pl/sql in the utput fmx file.
Oracle EBS DBA Utilities :FNDLOAD
To Upload:
Oracle Recovery Manager Features: BACKUP AS COPY
How do we identify backups taken as Image copies using RMAN?
ADOP Options: cleanup_mode
ADOP Options: actualize_all
Whenever adop prepare phase is initiated, a new patch edition is created in the database.During Online patching (ADOP) : An additional column ZD_EDITION_NAME is populated in the seed tables.As we do more online patching cycles, the number of entries for database editions will increase. This affects system performance and also increases cleanup time.When the number of old database editions reaches 25 or more, you should consider dropping all old database editions by running the adop actualize_all phase and then performing a full cleanup.
To drop older database editions, follow the below steps:
$ adop phase=prepare
$ adop phase=actualize_all
$ adop phase=finalize finalize_mode=full
$ adop phase=cutover
$ adop phase=cleanup cleanup_mode=full
How to Restore context file in oracle applications?