This blog is about error "insufficient Privileges" while connecting as sys as sysdba
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!!!!
Share the content if you found it is useful (You can share using 300 community websites) click "share" at the end of the post.
You are encouraged to leave a comment.
You are encouraged to leave a comment.
Thursday, August 19, 2010
Subscribe to:
Posts (Atom)
Let us be Friends...
Popular Posts
-
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...
-
Symptom: A MultiException has 6 exceptions. They are: 1. java.lang.AssertionError: Cannot export non clusterable object with jndiName:weblo...
-
Error while starting CommonDomain_webtier in fusion applications This error may happen if there are some residual processes running on acc...
-
This blog speaks about the Login Page Issue on R12.1.1 instance. Suddenly the login page was throwing an error - 404 /OA_HTML/AppsLogin was ...
-
To implement the solution, please execute the following steps: 1. Go into the responsibility: System Administrator 2. Submit the concurrent ...
-
The Following Error was detected while doing Cloning of DB Tier. The actual Fact was: The server was heavily loaded, so the control file cre...
-
In Oracle Application 11i and R12, we have an FND functionality for changing the passwords for either application user, or product schema pa...
-
MWA configuration in Oracle Applications Consider these points 1. Check if Enabled Telnet on the server If no.. please do the following step...
-
In this blog, I want to discuss about an critical error while adcfgclone on appsTier which may end your show. SP2-0642: SQL*Plus internal er...
-
This blog describes the process of re-creating an existing Applications Release 12 database instance using the export and import utilities....