Ora-01031: Insufficient Privileges during 10g installation [message #99272] |
Fri, 14 January 2005 10:34 |
Daniel
Messages: 47 Registered: February 2000
|
Member |
|
|
I have tried installing Oracle 10g on Suse 9.1 Professional several times. Although I have tried to carefully follow the instructions in the installation guide, I get the following error.
When the Database Configuration Assistant start during the initial installation, I receive the error -> Ora-01031: Insufficient Privileges.
I created the oinstall and dba group according to the installation guide and made oracle a member with oinstall being the primary group. I also ran -> chown -R oracle:oinstall -> on the Oracle_Base folder to which I want to install the software and oradata files. Similarly, I ran -> chmod -R 775 -> on that folder. During the install I ran the script -> oracle_base/oraInventory/orainstRoot.sh -> during the installation when prompted.
I would really appreciate any help that any of you could provide. Thank you so much in advance.
-Daniel
|
|
|
|
|
|
|
|
Re: Ora-01031: Insufficient Privileges during 10g installation [message #110566 is a reply to message #99272] |
Tue, 08 March 2005 13:55 |
|
Mahesh Rajendran
Messages: 10708 Registered: March 2002 Location: oracleDocoVille
|
Senior Member Account Moderator |
|
|
--
-- Please refer DOCUMENTATION.
-- all info is available in docs.
mag@teng > create sequence mysequence start with 1 increment by 1;
Sequence created.
mag@teng > select mysequence.nextval from dual
2 ;
NEXTVAL
----------
1
mag@teng > /
NEXTVAL
----------
2
mag@teng > /
NEXTVAL
----------
3
mag@teng > alter sequence mysequence increment by -2;
Sequence altered.
mag@teng > select mysequence.nextval from dual;
NEXTVAL
----------
1
|
|
|