Sunday, October 12, 2008
Oracle application 11i upgrade to R12.0.4 - coming soon
Posted by AppsFusion at 7:27 PM 5 comments Links to this post
Tuesday, August 12, 2008
Step by Step Information on R12 - How to Validate APPS Schema
In day to day activity DBA's encounter issues related to invalid objects. Common solution to the problem is running adadmin utility and utlrp script. In this post we are going to discuss invalid APPS schema not objects.
Now the question must be in your mind in what situations you really needs to validate the APPS Schema.
Here we go....
Methods to validate APPS Schema
On Unix:
1. Run system/passowrd @$AD_TOP/admin/sql/advrfapp.sql
2. Using adadmin utility and opt for "1. Validate APPS Schema" under "Maintain Applications Database Entities".
Steps to Validate APPS Schema
1.Run adadmin utility. Select the option "Maintain Applications Database Entities" from main menu of AD Administration.
2.Select "Validate APPS Schema" from sub-menu of "Maintain Applications Database Entities".
3. Now review the output file located at $APPL_TOP/admin/SID/out. The report name will be
Hope this helps.
Posted by AppsFusion at 7:30 PM 0 comments Links to this post
Wednesday, July 23, 2008
Step by Step Information on Oracle Applications R12 Control Scripts
In this post you will come to know about Oracle Applications Control Scripts. It is very important for an APPS DBA to know the location and its usage while handling APPS DBA duties.
The application Tier server process control scripts are used to start and stop server processes on the applications tier like adcmctl.sh (Concurrent manager start/stop control script) and adapcctl.sh (HTTP Server start/stop control script).
The following question can be arise in your mind regarding control scripts on Application Tier.
Here you go...The answer to the above queries are...
Control scripts are located in the $ADMIN_SCRIPTS_HOME (i.e, $INST_TOP/admin/scripts) directory. It is created by Rapid Install during the installation and you can recreate using AutoConfig (i.e,adautocfg.sh control script) as and when required.
The syntax of the control scripts is
$./adalnctl.sh stop (To stop the Apps Listener)
$./adalnctl.sh start (To start the Apps Listener)
You can use other Application Tier server process control scripts for all server processes to stop and start at the same time.
$./adstrtal.sh
$./adstpall.sh
To stop or start Forms server in socket mode.
$./adfrmsrvctl.sh
To stop or start Forms OC4J instance in servlet mode.
$./adfrmctl.sh
To stop or start Application Listener.
$./adalnctl.sh
To stop or start concurrent managers.
(This control script required the APPS username and password).
$./adcmctl.sh
To stop or start the HTTP server.
$./adapcctl.sh
Posted by AppsFusion at 1:10 PM 2 comments Links to this post