You are encouraged to leave a comment.
Thursday, August 19, 2010
Issue with Oracle DB Upgrade 9.2.0.5 to 10.2.0.4 (Apps DB)
SQL> conn / as sysdba
ERROR:
ORA-01031: insufficient privileges
When logging into the new ORACLE_HOME (to be upgraded)
I received this error. (ORA-01031)
OS: HP-UX 11.11 64 bit
OS_GROUP other than DBA My groups is USERS
Reason: in rdbms/lib config.c is hard-coded the group as "dba"
Solution:
1. Navigate to new ORACLE_HOME/rdbms/lib
2. Look for config.c
3. Backup config.o as config.o_bk
4. Backup config.c as config.c_bk
5. Open config.c
Change the lines as
Previous entry
/* SS_DBA_GRP defines the UNIX group ID for sqldba adminstrative access. */
/* Refer to the Installation and User's Guide for further information. */
#define SS_DBA_GRP "dba"
#define SS_OPER_GRP "dba"
char *ss_dba_grp[] = {SS_DBA_GRP, SS_OPER_GRP};
Changed Section
Previous entry
/* SS_DBA_GRP defines the UNIX group ID for sqldba adminstrative access. */
/* Refer to the Installation and User's Guide for further information. */
#define SS_DBA_GRP "users"
#define SS_OPER_GRP "users"
char *ss_dba_grp[] = {SS_DBA_GRP, SS_OPER_GRP};
6. run
make -f ins_rdbms.mk config.0 ioracle
once finished,
try to login as sysdba
it should work.
Cheers!!!!
Tuesday, January 05, 2010
Oracle Applications Upgrade to 12.1.2
Pre-requisites:
Applications should be of 12.1.1
For upgrading Oracle Applications from12.0.x to 12.1.1 please refer my blogpost
http://balajiabhi.blogspot.com/2009/07/upgrade-oracle-e-business-suite-1205-to.html
Web OH should be above 10.1.3.4
Step:1
Download AD_B_2 (8502056)
Download R121RUP2 (7303033)
Download Online Help patch (7303032)
Step:2
Apply 8502056:
Copy adgrants.sql from admin directory of the patch directory and copy to Database Oracle HOME/appsutil/admin
Source the Database environment file:
Run adgrants.sql as
Sqlplus /nolog
@adgrants.sql APPS
Source the Application Environment file
Apply the unified driver of 8502056 on the Application tier using adpatch
Be Sure that you have WEB_OH as 10.1.3.4 and above.
You can see that in WEB_OH (ORACLE_APPS_BASE/apps/tech_st/10.1.3/config/ias.properties) version.
Step 3:
Apply 7303033 using adpatch with default options.
- Be sure that you have enough space in APPS_TS_TX_DATA and APPS_TS_TX_IDX before starting the patch application.
After application of patch 7303033, it is advised to apply the online Help patch no. 7303032 using adpatch with default options
After application of these patches,
Please run autoconfig on the apps Tier and then make the appsutil.zip file from $AD_TOP/bin/perl
admkappsutil.pl
Copy the file to the $RDBMS_ORACLE_HOME and unzip the file.
Run autoconfig on the Database Tier.
It is mandatory to do a preclone on both the tiers which will enable to create a new clone directory structures during cloning.
Startup the instance.
Verify the upgrade using apps account in the backend
SQL> select release_name from FND_PRODUCT_GROUPS;
RELEASE_NAME
--------------------------------------------------
12.1.2
SQL>
Front end:
From the Forms:
Issues:
One object becomes invalid after application of the main patch.
OBJECT_NAME OWNER OBJECT_TYPE
------------------------------ ------------------- ----------------------------------
PA_PWP_SUMM_PKG APPS PACKAGE BODY
When you try to compile the object manually as apps, we got the following error:
SQL> alter package PA_PWP_SUMM_PKG compile body;
Warning: Package Body altered with compilation errors.
SQL> show err
Errors for PACKAGE BODY PA_PWP_SUMM_PKG:
LINE/COL ERROR
-------- -----------------------------------------------------------------
342/1 PL/SQL: SQL Statement ignored
375/10 PL/SQL: ORA-00942: table or view does not exist
I raised SR against this error. Let me update any fix for this. Until now, the upgrade is uneventful.
Cheers!!!!
Wednesday, July 15, 2009
Upgrade Oracle E Business Suite 12.0.X to 12.1.1
Oracle Interim Patch Installer version 1.0.0.0.56
We recommend you refer to the OPatch documentation underOPatch/docs for usage reference. We also recommend usingthe latest OPatch version. For the latest OPatch versionand other support related issues, please refer to document293369.1 which is viewable from metalink.oracle.com
Oracle Home : /oracle/ACE/apps/tech_st/10.1.3Oracle Home Inventory : /oracle/ACE/apps/tech_st/10.1.3/inventoryCentral Inventory : /oracle/ACE/inst/apps/ACE_samarth/admin/oraInventory from : /oracle/ACE/apps/tech_st/10.1.3/oraInst.locOUI location : /oracle/ACE/apps/tech_st/10.1.3/ouiOUI shared library : /oracle/ACE/apps/tech_st/10.1.3/oui/lib/linux/liboraInstaller.soJava location : /oracle/ACE/apps/tech_st/10.1.3/jre/1.4.2/bin/javaLog file location : /oracle/ACE/apps/tech_st/10.1.3/.patch_storage/
Creating log file "/oracle/ACE/apps/tech_st/10.1.3/.patch_storage/LsInventory__07-17-2009_20-17-29.log"
Result:
PRODUCT NAME VERSION
============ =======
Agent Required Support Files Patch 10.1.0.5.0
.
OPatch succeeded.
Phase 3: Upgrading the Java JDK
./java -version
[oracle@prod jre]$ cd bin
[oracle@prod bin]$
./java -version
java version "1.6.0_14"
Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
The result will be
/oracle/ACE/apps/tech_st/10.1.2/lib,-rpath,/oracle/ACE/apps/tech_st/10.1.2/jdk/jre/lib/i386:/lib:/usr/lib -lm `cat /oracle/ACE/apps/tech_st/10.1.2/lib/sysliblist` -ldl -lpthread -lm -L/oracle/ACE/apps/tech_st/10.1.2/lib -L/oracle/ACE/apps/tech_st/10.1.2/lib/stubs/ -lsnls10 -lpthread -ljvm -lhpi -Wl,-rpath,/usr/X11R6/lib -L/usr/X11R6/lib -lXm -lXt -lX11 -lm -lXp -lXext /oracle/ACE/apps/tech_st/10.1.2/lib//librw.a -lnslmv rwbuilder /oracle/ACE/apps/tech_st/10.1.2/bin/rwbuilderchmod 700 /oracle/ACE/apps/tech_st/10.1.2/bin/rwbuilder
Enter Oc4j Instance password for re-deployment ? welcome (or current password)
? No ">Run Autoconfig
Do the following:
$INST_TOP/ora/10.1.3/j2ee/forms/config/system-jazn-data.xml
locate oc4j-admin section
[user]
[name]oc4jadmin[/name]
[display-name]OC4J Administrator[/display-name]
[guid]88836370D11611DC9F30F9C1CD6F1A73[/guid]
[description]OC4J Administrator[/description]
[credentials]{903}F+iG1A46edXG9RdfY0pD2O4Ge/qyEjsg[/credentials]
[/user]
replace
{903}F+iG1A46edXG9RdfY0pD2O4Ge/qyEjsg
with
!Welcome [Please note '!' is important]
cd $ORACLE_HOME/forms/lib32
Note: if this directory does not exist: cd $ORACLE_HOME/forms/lib
$ make -f ins_forms.mk install
cd $ORACLE_HOME/reports/lib32
Note: if this directory does not exist: cd $ORACLE_HOME/reports/lib
$ make -f ins_reports.mk install
Apply the product specific patches as per the metalink document stated above.
To get other versions, enable about this page link in LOGINPAGE of the server
To do this please do the following:
set the profile option FND: Diagnostics = Yes
Then bounce the middle tier services, you will see a link 'About This Page' at the bottom of the web page

Cheers!!! and Best of Luck!!!
FRM-92150: WEB client version too new
FRM-92150: WEB Client version too new
The fix is as below:
Go to TOOLS_ORACLE_HOME (10.1.2)
cd forms/lib (in case of Linux) forms/lib32 (in case of other OS)
run
make -f ins_forms.mk sharedlib
it will create shared library functionalites again to run the forms.
The error will not be there..
Tuesday, July 14, 2009
Rebuilding XDO objects (Failed worker on 12.1.1 upgradation)
Then try this:
First verify the application has been licensed with xdo.
1. select object_name,object_type,owner from dba_objects where object_name like 'XDO%';
you should have returned with 153 rows.
2. Select application_id,application_short_name from apps.fnd_application where application_short_name = 'XDO';
3.Recreate objects in XDO using
goto:
$XDO_TOP/patch/115/odf
use the command:
adodfcmp odffile=XDOTMGR.odf userid=applsys/apps changedb=yes priv_schema=system/manager mode=tables touser=apps/apps logfile=xdotables.log
adodfcmp odffile=XDOTMGR.odf userid=applsys/apps changedb=yes priv_schema=system/manager mode=indexes touser=apps/apps logfile=xdoindexes.log
adodfcmp odffile=XDOTMGR.odf userid=applsys/apps changedb=yes priv_schema=system/manager mode=sequences touser=apps/apps logfile=xdosequenc.log
adodfcmp odffile=XDOTMGR.odf userid=applsys/apps changedb=yes priv_schema=system/manager mode=views touser=apps/apps logfile=xdoviews.log
Rerun the patch or restart the failed worker.
Let us be Friends...
Popular Posts
-
This blog describes the process of re-creating an existing Applications Release 12 database instance using the export and import utilities....
-
Secure Sockets Layer (SSL) SSL is a technology that defines the essential functions of mutual authentication, data encryption, and data inte...
-
1. Installation of the Demantra Base Application or Patches Create a C:/Tmp folder on the machine where the setup.exe will be executed pri...
-
Primary Node: Host name: genius.chainsys.com IP : 192.168.2.236 File locations: apps - /oracle/D1/apps (SHARED) db - /oracle/PROD/db inst - ...
-
In this Blog, I am going to explain you the way you can get the Translation Synchronization Patch for the Language you license thro OAM. T...
-
To implement the solution, please execute the following steps: 1. Go into the responsibility: System Administrator 2. Submit the concurrent ...
-
Memory Tuning The total available memory on a system should be configured in such a manner, that all components of the system functio...
-
Symptom: A MultiException has 6 exceptions. They are: 1. java.lang.AssertionError: Cannot export non clusterable object with jndiName:weblo...
-
Hi, everybody should come across, while during a clone, you might have experienced very poor performance while running txkWfClone.sh profil...
-
In Oracle Application 11i and R12, we have an FND functionality for changing the passwords for either application user, or product schema pa...