Insufficient Privileges at the conection

Hello....
I have an Oracle database 10g R1 on Windows Server 2003. The parameter remote_login_passwordfile is in EXCLUSIVE mode.
The problem is when I try to connect to rman:
I write: rman target / catalog rman/rman
And appear: ORA-01031-Insufficient Privileges
I write: rman target sys/oracle catalog rman/rman
And appear: ORA-01031-Insufficient Privileges
So, I tried to connect to SqlPlus and I have the same problem:
I write: sqlplus '/as sysdba' and this doesn´t work
I write: sqlplus "/as sysdba" and this doesn´t work
I write: sqlplus /nolog then: conn sys as sysdba and appear: ORA-01031-Insufficient Privileges
Any solution?
Thanks.

Hello, thanks for your answer... I review all this points, and all is OK, but I discover other thing:
If I tried to connect with the user sa, this user connect remotely and locally:
D:\oracle\product\10.1.0\Db_1\database>sqlplus sa/<pass>@TSCOTY-INEVOTES
SQL*Plus: Release 10.1.0.4.0 - Production on Mon Mar 2 17:13:06 2009
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
Connected to:
Oracle Database 10g Release 10.1.0.4.0 - Production
SQL>
D:\oracle\product\10.1.0\Db_1\database>sqlplus sa/<pass>
SQL*Plus: Release 10.1.0.4.0 - Production on Mon Mar 2 17:17:48 2009
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
Connected to:
Oracle Database 10g Release 10.1.0.4.0 - Production
SQL>
So, the problem seem to be only with the user sys. I will follow review, if I have a new notice I will write...
Thanks.

Similar Messages

  • You have insufficient privileges for the current operation-Getting error running OAF page in R12

    I have a custom OAF page in R11 which is working fine.
    Same page is giving below errors in R12.
    Any suggestions how to resolve this issue..please advice.
    [167]:STATEMENT:[fnd.framework.webui.OAPageSecurity]:MAC validation status = false   
    [167]:STATEMENT:[fnd.framework.webui.OAPageSecurity]:Request parameters validation status = false   
    [167]:ERROR:[fnd.framework.webui.OAPageSecurity]:You cannot run a page which is not SelfSecured when the MAC fails.   
    [169]:ERROR:[fnd.common.Message.auto_log]:FNDFND_INSUFF_PRIVILEGES   
    [169]:ERROR:[fnd.framework.OAException]:You have insufficient privileges for the current operation. Please contact your System Administrator.   
    [170]:EVENT:[fnd.framework.webui.OAPageContextImpl]:OAF LOG: Event : Redirect Page, in: oracle.apps.fnd.framework.webui.OAPageContextImpl: OA.jsp?akRegionCode=FNDDIALOGPAGE&akRegionApplicationId=0&transactionid=817211813&oapc=10&oas=YyMjRI6buFwrYehD8b25iQ..&retainAM=Y&addBreadCrumb=S&OAMC=G   
    [170]:PROCEDURE:[fnd.profiles.Profiles]:getProfileOptionValue:  name=JTF_PF_MASTER_ENABLED; levelID=10001; levelValue=0; levelValueApplID=0   
    [170]:EVENT:[jtf.activity.CorePageObject]: PATBE START currentPageObject : PAT STATUS:false   
    [170]:EVENT:[jtf.activity.CorePageObject]: PATBE END currentPageObject : return factory.dummyProxyUser():   
    [322]:EXCEPTION:[fnd.framework.webui.OAPageBean]:java.lang.NullPointerException   
    Thanks in Advance
    Sridevi K

    Hi Sridevi,
    The custom page is a selfsecured page?
    ie, it will be accessed without login?
    What is the profile option fnd_debuging_level 's value set to.
    I Could see one your other thread
    Re: You have insufficient privileges for the current Operation error
    you mentioned that you did tried setting the profile options
    Framework Validation Level
    FND Function Validation LEvel
    FND Validation Level
    to none, still you are facing the issue,
    At what level you tried the profile options.
    Thanks,
    With regards,
    Kali.
    OSSi.    

  • ORA-01039:Insufficient Privileges on the Underlying Objects of the View

    Hi,
    I have a Query where it is using (SELECT name from v$DATABASE as a Inline View).
    But when my running the Explain Plan in Toad it is giving the Error as
    'ORA-01039:Insufficient Privileges on the Underlying Objects of the View'
    Any help will be appreciable
    Thanks and Regards

    you need SELECT ANY DICTIONARY privelage Below is a small demonstration.
    First iam connecting as a SYSDBA and doing an explain plan on v$database.
    SQL*Plus: Release 9.2.0.1.0 - Production on Mon Sep 1 12:36:53 2008
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Enter user-name: akivadba/akivadba@akivatst as sysdba
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> set linesize 250
    SQL>
    SQL> explain plan for select * from v$database
      2  /
    Explained.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    Plan hash value: 735420252
    | Id  | Operation            | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |          |   100 | 77200 |     0   (0)| 00:00:01 |
    |   1 |  MERGE JOIN CARTESIAN|          |   100 | 77200 |     0   (0)| 00:00:01 |
    |*  2 |   FIXED TABLE FULL   | X$KCCDI  |     1 |   710 |     0   (0)| 00:00:01 |
    |   3 |   BUFFER SORT        |          |   100 |  6200 |     0   (0)| 00:00:01 |
    |   4 |    FIXED TABLE FULL  | X$KCCDI2 |   100 |  6200 |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("DI"."INST_ID"=USERENV('INSTANCE'))
    16 rows selected.No problem till now every thing is fine. Now iam connecting as a normal user and doing the same.
    SQL> connect
    Enter user-name: sysadm/sysadm@akivatst
    Connected.
    SQL>
    SQL> explain plan for select * from v$database
      2  /
    explain plan for select * from v$database
    ERROR at line 1:
    ORA-01039: insufficient privileges on underlying objects of the viewLook i got the insufficient privileges error. Now let me grant the required privileges.
    SQL> connect
    Enter user-name: akivadba/akivadba@akivatst as sysdba
    Connected.
    SQL> GRANT SELECT ANY DICTIONARY TO SYSADM
      2  /
    Grant succeeded.Now connect back to the user and try again.
    SQL> connect
    Enter user-name: sysadm/sysadm@akivatst
    Connected.
    SQL> explain plan for select * from v$database
      2  /
    Explained.
    SQL> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT
    Plan hash value: 735420252
    | Id  | Operation            | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |          |   100 | 77200 |     0   (0)| 00:00:01 |
    |   1 |  MERGE JOIN CARTESIAN|          |   100 | 77200 |     0   (0)| 00:00:01 |
    |*  2 |   FIXED TABLE FULL   | X$KCCDI  |     1 |   710 |     0   (0)| 00:00:01 |
    |   3 |   BUFFER SORT        |          |   100 |  6200 |     0   (0)| 00:00:01 |
    |   4 |    FIXED TABLE FULL  | X$KCCDI2 |   100 |  6200 |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("DI"."INST_ID"=USERENV('INSTANCE'))
    16 rows selected.
    SQL>Thanks,
    Karthick.
    Edited by: karthick_arp on Sep 1, 2008 12:21 AM

  • You have insufficient privileges to the current operation

    Hi hussein,
    EBS 11i
    AIX 5L
    I have just finished cloning our EBS to the DEV server. All process and services were succssful.
    Except I see some failed message about OUI registration? in the ouInventory? because no permission of the directory
    But it scrolled so fast and I can not retrieve back the log.
    It says you can run registration again by run the dir which I was not able to capture.
    So when I login SYSADMIN/SYSADMIN to the new cloned instance, I got this error:
    You have insufficient privileges to the current operationAll userid have this error message when logged in.
    Is this caused by the failed ouInventory registratrion?
    Where can I find that file to run for registration?
    Please help....
    Thanks a lot
    Ms K

    hussein,
    I try to apply the solution for doc
    Cannot Login After Changing Load Balancing Parameters (new host and domain) [ID 739507.1]Actually I did not setup for a Load Balancer. Its just an ordinary clone.
    Cause
      Cookie issue.
      The HTTP header trace showed that the cookie did not use the value of  ICX_SESSION_ID compared with a working environment.
      It has been determined that the ICX_PARAMETERS table has old value for session_domain_name.
    Solution
    To implement the solution, please execute the following steps:
    1. Update the "s_cookie_domain" context variable to the new load balancer domain value
    2. Run autoconfig
    3. Check the value of "session_cookie_domain" in the ICX_PARAMETERS table:
    select * from ICX_PARAMETERS;
    4. If it is the old value then do the following:
    a. backup the ICX_PARAMETERS table:
    create table ICX_PARAMETERS_BKP
    as select * from ICX_PARAMETERS;
    b. update the table with the sql statement below:
    update ICX_PARAMETERS,
    set session_cookie_domain='<new load balancer domain name>';
    5. Bounce Apache and retest the login issue. But I can not find "s_cookie_domain" in my context file. :(

  • Apps Login Page Error- Insufficient privileges for the current operation

    Hi Gurus,
    We migrated application node from HP-UNIX to SUN Solaris with 11.5.10.2 and 10.2.04 database. When i try to login as sysadmin, got the error You have insufficient privileges for the current operation.
    But i can able to go in with Forms URL and it works. I don't see any errors on IAS except
    Fatal error in parsing device registration file in jserv.log.
    Any help is appreciated.
    Thank You.

    I found 150 invalid objects in the database. Also i have question here my database and the application is on different domains.Where do you have those invalid objects? Under what schema?
    Using different domain names should be OK.
    Do you think that will work. If the application and database put it in the same domain( put the apps in same database domain), by running the autoconfig will update the domain name in application server globally.I cannot assure if it is going to work or not.
    Have you checked Apache log files?
    If not change the domain name globally what else need to be done to change it. Please suggest on that.These are the docs you need to access if you want to change the domain name.
    How to change the hostname of an Applications Tier using AutoConfig [ID 341322.1]
    How to change the hostname and/or port of the Database Tier using AutoConfig [ID 338003.1]
    Steps To Clean Nonexistent Nodes or IP Addresses From FND_NODES [ID 260887.1]
    Thanks,
    Hussein

  • You have insufficient privileges for the current operation error

    Dear All,
    i am getting the You have insufficient privileges for the current operation. Please contact your System Administrator error while opening the oaf page in same window of oracle apps .
    below is the apache log file error
    File does not exist: "instance"/portal/oa.jsp
    Please let me know what is the problem .
    Thanks
    Maheswara Raju

    Try adding the System Administrator responsibility to your user.

  • Insufficient privileges error while calling the seeded page on button click

    hi all
    I am working on Customers Online module.
    I have added a normal button on a standard page through personalization .
    The destination for the button is set to call the seeded Create organization page
    destination="OA.jsp?OAFunc=XXIIMC_NG_ORG_CREATE&amp;OAHP=IMC_NG_MAIN_MENU&amp;OASF=IMC_NG_ORG_CREATE"
    System Admin --> functions --> XXIIMC_NG_ORG_CREATE is a copy of standard function IMC_NG_ORG_CREATE.
    It calls the page "OA.jsp?page=/oracle/apps/imc/ocong/party/organization/webui/ImcCreateOrg&HzPuiAddressEvent=CREATE"
    When i click on the button i get the error *"You have insufficient privileges for the current operation. Please contact your System Administrator"*
    1. The profiles *"FND Function Validation Level"* and *"FND Validation Level"* are set to NONE
    2. Bounced apache also.
    3. The responsibility Customers Online Superuser is assigned to my user.
    We are doing R12 upgrade. The similar functionality is working fine in 11i.
    Please let me know what could be the reason of this error and how to correct it.

    Hi,
    Grant is not given to the create organization page. Ask your DBA for this issue.
    Thanks,
    Kumar

  • Getting Insufficient Privileges Error while running Pages in Jdeveloper

    Hi,
    When I am running my pages in JDeveloper, I am getting the Error:
    "You have insufficient privileges for the current operation." and the Application login page is being shown.
    Looking at the log window, I see that the system expects my page to be shown correctly. However the login screen gets displayed.
    I suspected that my login/password is incorrect in Jdeveloper Project settings. But I tried that. It is finw. Any suggestions as to what the problem might be would be great.
    Please find excerpts from the Jdev log window:
    [328] Connected to Oracle JBO Server - Version: 9.0.3.13.88
    [329] Loading from /lalith/oracle/apps/xxtmg/graph/server/server.xml file
    [330] Loading from indvidual XML files
    [331] Loading the Containees for the Package 'lalith.oracle.apps.xxtmg.graph.server.server'.
    [332] Loading from /lalith/oracle/apps/xxtmg/graph/server/GraphAM.xml file
    [333] Created root application module: 'lalith.oracle.apps.xxtmg.graph.server.GraphAM'
    [334] Locale is: 'en_US'
    [335] DefaultConnectionStrategy is establishing an application module connection
    [336] mUsePersColl is false
    [337] ViewObjectImpl.mDefaultMaxRowsPerNode is 70
    [338] ViewObjectImpl.mDefaultMaxActiveNodes is 30
    [339] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    [340] Successfully logged in
    [341] JDBCDriverVersion: 9.2.0.5.0
    [342] DatabaseProductName: Oracle
    [343] DatabaseProductVersion: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production With the Partitioning, OLAP and Data Mining options
    [344] Root application module, lalith.oracle.apps.xxtmg.graph.server.GraphAM, was created at 2007-01-02 14:08:08.391
    [345] setConnectionReleaseLevel - Set connection release level to 0
    [346] OAApplicationPoolImpl.setConnectionReleaseLevel was called with isReleased = false, isReserved = false
    [347] setConnectionReleaseLevel - Set connection release level to 0
    [348]
    <ICX_SessionValues_Diagnostics - ICX Cookie = m6BVBr6qeAiK1S9ptOKjFou1:S>: WebRequestUtil.validateContext is called.
    [349]
    <ICX_SessionValues_Diagnostics - ICX Cookie = m6BVBr6qeAiK1S9ptOKjFou1:S>: WebRequestUtil.validateContext returned status = VALID.
    ICX Session Values after WebRequestUtil.validateContext:
    ============================================================
    <ICX_SessionValues_Diagnostics - ICX Cookie = m6BVBr6qeAiK1S9ptOKjFou1:S>:
    Current ICX Session (Oracle Applications User Session) Values:
    1. User ID (DB, ICX_SESSIONS) = 6
    2. Responsibility ID (DB, ICX_SESSIONS) = -1
    3. Responsibility Application ID (DB, ICX_SESSIONS) = -1
    4. Org ID (DB, ICX_SESSIONS) = 132
    5. Org ID (DB, CLIENT_INFO) = 132
    6. Org ID (ProfileStore.getProfile) = 132
    7. Org ID (ProfileStore.getSpecificProfile with new ICX_SESSIONS values) = 132
    8. Employee ID (DB, FND_GLOBAL.EMPLOYEE_ID) = -1
    9. Employee ID (AppsContext.getFNDGlobal) = -1
    10. Function ID (DB, ICX_SESSIONS) = -1
    11. Security Group ID (DB, ICX_SESSIONS) = -1
    ===========================================================
    [350] New Language Code = null
    [351] Current Language Code = US
    [352] ViewDefImpl_1_2>#q computed SQLStmtBufLen: 64, actual=24, storing=54
    [353] select sysdate from dual
    [354] **********oracle.jdbc.driver.OraclePreparedStatement@11abd68
    [355] Column count: 1
    [356] Column count: 1
    [357] ViewObject : Created new QUERY statement
    [358] ViewDefImpl_1_2>#q old SQLStmtBufLen: 54, actual=24, storing=54
    [359] select sysdate from dual
    [360] ViewObject close prepared statements...
    [361] Loading from /oracle/apps/ak/region/server/server.xml file
    [362] Loading from indvidual XML files
    [363] Loading the Containees for the Package 'oracle.apps.ak.region.server.server'.
    [364] Loading from /oracle/apps/ak/region/server/AkAmParameterRegistryVO.xml file
    [365] ViewDef: oracle.apps.ak.region.server.AkAmParameterRegistryVO using glue class
    [366] Column count: 2
    [367] ViewObject : Created new QUERY statement
    [368] AkAmParameterRegistryVO>#q computed SQLStmtBufLen: 140, actual=100, storing=130
    [369] select PARAM_NAME, PARAM_SOURCE
    from AK_AM_PARAMETER_REGISTRY
    where APPLICATIONMODULE_DEFN_NAME = :1
    [370] Binding param 1: lalith.oracle.apps.xxtmg.graph.server.GraphAM
    [371] OAApplicationPoolImpl.setConnectionReleaseLevel was called with isReleased = true, isReserved = true
    JRAD_PERF : /lalith/oracle/apps/xxtmg/graphs/webui/GraphPG - processRequest : 1313ms
    We have recently migrated our 9i database to 10G database. Is it something related to that?
    Thanks

    Check whether the following thread helps.
    Re: Error: You have insufficient privileges for the current Operation.

  • Insufficient privileges on  11.2.03 but not 11.2.0.1?

    ON Oracle 11.2.0.1
    User dropped.
    User dropped.
    User dropped.
    BANNER                                                                         
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production   
    PL/SQL Release 11.2.0.1.0 - Production                                         
    CORE 11.2.0.1.0 Production                                                     
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production                        
    NLSRTL Version 11.2.0.1.0 - Production                                         
    User created.
    Grant succeeded.
    User created.
    Grant succeeded.
    User created.
    Grant succeeded.
    Grant succeeded.
    Connected.
    Grant succeeded.
    Connected.
    Grant succeeded.
    SQL> exit
    ON Oracle 11.2.0.3
    drop user installuser cascade
    ERROR at line 1:
    ORA-01918: user 'INSTALLUSER' does not exist
      drop user receiveuser
    ERROR at line 1:
    ORA-01918: user 'RECEIVEUSER' does not exist
      drop user grantuser
    ERROR at line 1:
    ORA-01918: user 'GRANTUSER' does not exist
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production         
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for 32-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    'Create user installuser'
    User created.
    Grant succeeded.
    'Create user receiveuser'
    User created.
    Grant succeeded.
    'Create user grantuser'
    User created.
    Grant succeeded.
    'grant execute on utl_raw to installuser with grant option'
    Grant succeeded.
    'connect as installuse
    Connected.
    'grant execute on utl_raw to grantuser with grant option;'
    Grant succeeded.
    'connect to grantuser'
    Connected.
    'grant execute on utl_raw to receiveuser'
    grant execute on utl_raw to receiveuser
    ERROR at line 1:
    ORA-01031: insufficient privileges
    And the script:
    spool test.log
    drop user installuser cascade;
    drop user receiveuser;
    drop user grantuser;
    select * from v$version;
    Prompt 'Create user installuser'
    create user installuser identified by installuser;
    grant connect, resource, dba to installuser;
    Prompt 'Create user receiveuser'
    create user receiveuser identified by receiveuser;
    grant connect, resource to receiveuser;
    Prompt 'Create user grantuser'
    create user grantuser identified by grantuser;
    grant connect, resource to grantuser;
    Prompt 'grant execute on utl_raw to installuser with grant option'
    grant execute on utl_raw to installuser with grant option;
    Prompt 'connect as installuser'
    connect installuser/installuser;
    prompt 'grant execute on utl_raw to grantuser with grant option;'
    grant execute on utl_raw to grantuser with grant option;
    prompt 'connect to grantuser'
    connect grantuser/grantuser;
    prompt 'grant execute on utl_raw to receiveuser'
    grant execute on utl_raw to receiveuser;
    exit;

    Looks like it has already been logged as a bug...
    Granting The Execute Privilege On SYS Owned Packages Fails With ORA-01031 On 11.2.0.3.0 (Doc ID 1393228.1)
    Regards,
    Bob

  • 4.0 EA2 - Insufficient Privileges When Creating Object With Proxy

    When I have connected by proxying to another user, I receive the following message when trying to create a new object:
    The database user has insufficient privileges for the given operation.
    Steps to reproduce:
    Connect by proxying to another user
    Right Click on Views
    Select New View
    I noticed this under EA1, though, not sure if reported.  This worked under 3.2.2

    Sounds like your management needs a stern lecture on the concept of change management. <g>
    I am not debating what you do. I am questioning the logic, or lack thereof, of doing it that way. My recommendation would be to change your procedure to one that:
    A. Is more in line with good change management practices.
    B. Works.

  • Resolving problem with ORA-01031: insufficient privileges

    hello i just to write a few word about my installation of oracle database 9i
    My installation is on a Red Hat AS3
    I have a problem with the error :ORA-01031: insufficient privileges
    The one who read this know what about i tell.
    The authorization is only for the user which Group is DBA as you can read everywhere.
    but me when i tried groupadd dba => it tells group already exist.
    but i can't find the group dba in the file /etc/group.
    So i tried to make my user 'oracle' works with the 'already group exist' dba .
    useradd -g dba oracle
    but when i tried to start the database i create i have the message. : ORA-01031: insufficient privileges
    i tried to add manualy the group dba to /etc/group (as i can read in websites)
    and add a user manualy (/etc/passwd).
    But does works.
    I try all i can during 1 days long.
    I was really upset because nothing that i read work.
    finaly I go to the RedHat Menu (things i don't really do normaly on LINUX) and go to 'SYSTEM SETTINGS' and choose 'User and Group'
    Here i can see my user 'Oracle' I get the property of the user .
    there is a tab group ( 'select the group that the user will be member of:')
    None of them where name DBA so i decidied to select all of them and tried.
    MAGIC!!! then it works!!!
    ps: after when i see the list of the group I saw that one of them is named 'SYS' . I really think that it is the one group i had to select. but don't know.
    Now It is working for me so... And good luck for you. bye.

    Errors
    ORA-01031 "insufficient privileges"
    Symptoms
    During database upgrade phase using DBUA , it fails with error
    ORA-1031 Insufficient privileges
    Connection from sqlplus also fails with same error
    $ sqlplus /nolog
    SQLPLUS "conn / as sysdba"
    ORA-1031 Insufficient privileges
    Changing the REMOTE_LOGIN_PASSWORDFILE to SHARED / NONE does not make differen
    Cause
    ORACLE_HOME owner oramigts is part of OS group "dba" ,but config.s shows group "g680"
    The 'OSDBA' and 'OSOPER' groups are chosen at installation time and usually both default to the group 'dba'.
    These groups are compiled into the 'oracle' executable and so are the same for all databases running from a given ORACLE_HOME directory.
    The actual groups being used for OSDBA and OSOPER can be checked thus:
    cd $ORACLE_HOME/rdbms/lib
    cat config.[cs]
    Solution
    To implement the solution, please execute the following steps:
    1. Checked the ORACLE_HOME owner.
    echo $ORACLE_HOME
    /h02/app/oracle/product/9.2.0_64
    cd / h02/app/oracle/product/
    ls -l
    drwxr-xr-x 58 oramigts dba 1024 Jan 2 2004 9.2.0_64
    2.ORACLE_HOME software owner "oramigts" is part of group "dba"
    3.Checked file $ORACLE_HOME/rdbms/lib/config.s
    [If your platform has config.c:
    Due to the way different compilers under different architectures generate
    assembler code, it's not possible to give a universal rule.]
    It shows dba group as "g680" where software owner is part of "dba" group
    You can more find detail on config.s / config.c in the following doc.
    Note 50507.1 SYSDBA and SYSOPER Privileges in Oracle
    4. Modified the config.s for correct group.
    .ascii "g680\0"
    to
    .ascii "dba\0"
    7. mv config.o config.o.bak
    8. make -f ins_rdbms.mk config.o ioracle
    9. Checked the file config.o is created at $ORACLE_HOME/rdbms/lib
    10. Connected / as sysdba thru Sqlplus from 9.2 Home, which connected sucessfully.

  • Getting ORA-01031: insufficient privileges if try to connect in sqlplus

    Hi,
    I've tried to connect to my db which stands at host (Solaris), but getting
    ORA-01031: insufficient privileges.
    The client I've used is sqlplus.
    SQL> conn sys@REP as sysdba
    ERROR:
    ORA-01031: insufficient privileges
    At the same time I can successfully connect to the same db from the same PC with the same connection string at PL/SQL Developer.
    How it can be possible?

    Guys...
    I'm having the same problem.
    The platform is a Windows 2003 R2 64bit (SP2) with Oracle 11g.
    In the production server from the same client, the connection is usually ... however, to a server where I have the same instances retrieved from an RMAN backup, does not connect!
    In the Productoion Server:
    C:\>sqlplus sys@bmknfe as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Aug 18 17:43:41 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    In the Recovered Server:
    C:\>sqlplus sys@bmknfe_rt as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Aug 18 17:42:39 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-01031: insufficient privileges
    I've tried recreating the password file, but is not resolving ...
    Can someone give me a light?

  • Backups fail with Insufficient privileges error

    Oracle 9.2.0.5 database
    Solaris Operating Sysstem
    I needed to recreate one database recently from the backup. I used DUPLICATE TARGET DATABASE comamand to recreate database. And once client confirmed I removed old database and copied this new database to original location and recreated controlfile.
    But the tape backups are failing ever since then.
    Is it because of password file problems ? This is a a totally new database and also DBID is different . But database name is same and created from backups of old database.
    Backups fail with this error.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    ORA-01031: insufficient privileges
    But the RMANUSER has the same privileges as in other databases on this server.
    SQL> select username,sysdba,sysoper from v$pwfile_users;
    USERNAME SYSDB SYSOP
    SYS TRUE TRUE
    RMANUSER TRUE FALSE
    SQL> select privilege from dba_sys_privs where grantee='RMANUSER';
    PRIVILEGE
    CREATE SESSION
    UNLIMITED TABLESPACE
    How to resolve this issue ?

    I actually recreated the password file using orapwd utility. But when checked the V$PWFILE_USERS it showed no users. Not even SYS
    And I tired to grant SYSDBA to RMANUSER. It failed with the following error.
    ERROR at line 1:
    ORA-01999: password file mode has changed from 'exclusive' to 'shared'
    But the show parameter REMOTE showed that remote_login_passwordfile is still EXCLUSIVE. And database uses an INIT file, not SPFILE.
    I had to move back the copy of Old password file and now it shows two users (SYS and RMANUSER) again.

  • Payroll Notification: Error You have insufficient privileges

    Hi,
    I try to review the timecard(by clicking on the link 'To Review timecard') on the notification details page(/oracle/apps/fnd/wf/worklist/webui/NotifDetailsPG). but I encounter an error saying 'You have insufficient privileges for the current operation. Please contact your System Administrator'. Please let me know any functional setup needs to be done to resolve the issue.
    Thanks,

    What is your application release?
    Please see these MOS Docs.
    'You have insufficient privileges for the current operation.' When adding Timecard Line Manager Function (Timecard Mgr) to a Custom Menu [ID 316531.1]
    Unable To Review Timecard In Worklist Timecard Approval, Insufficient Privileges [ID 358048.1]
    HXCEMP Timecard_approval Notification Has Click Here Link And It Does Not Work [ID 436573.1]
    Thanks,
    Hussein

  • "You have insufficient privileges for current operation

    IN R12
    problem with some users getting error "You have insufficient privileges for the current operation. Please contact your System Administrator." on login. The error happens intermittently
    There is no recent changes

    the following error is reported in the apache log file mod_oc4j: Failed to find a failover oc4j process for session request for destination: application://oacore (no island or jgroup).
    Is it related to this issue (You have insufficient privileges for current operation)Please see these docs.
    R12: Resolving error mod_oc4j Failed To find A Failover OC4J Process For Session Request For Destination [ID 785296.1]
    R12: Http Server Crashing Frequently With Segmentation Fault (NAS or SAN filesystem) [ID 732857.1]
    Cannot Login on 12.1 : mod_oc4j, shmcb_malloc Attempt For 511994 Bytes Failed [ID 1062733.1]
    Thanks,
    Hussein

Maybe you are looking for

  • When I went to a website my computer would ask deny or allow cookies, I lost this feature some how and would like to know how to fix this.

    When I went into a web site it would ask me if the cookie is allowed or denied. This has disappeared on my computer, just want to know how to get it back. == This happened == Not sure how often == I had to restart my computer for a security add on.

  • "Free of Charge" field mandatory on Purchase order document

    Hello, Where can I set and de-select the "free of charge" field as mandatory in SAP MM for Purchase orders? I am working around SPRO -> Material Managment -> Purchasing -> Purchase Order -> Define screen Layout at document level, but there I cannot f

  • Program name starting with " ! "

    Hi ABAPers ! For some unknown reasons, while working on the development of a custom program called "ZVER0221_V2", at some point in my development, the Workbench stared asking me ( almost everytime I save a program and/or and include related to this m

  • HT201317 I can't sync my photo folders now!

    My problem with iCloud is that now I can't connect my iPhone with my laptop and move photos from my iPhone folders to folders on my computer. If I can find a way to do that again without removing iCloud entirely, I'll do it.  Any advice?! I want to d

  • Modify HTML Tags in memory

    Hello all, Not sure if this is the right forum... but... I need to be able to parse an HTML document (which I won't have created) looking for certain tags and modify them as required. The specific situation is a web based mail client which needs to r