LoadJava Privilege Error

While loading a .jar using loadjava in Oracle 8.1.5 I had this error on all the classes within the jar. Does anyone know what the problem is ?
Error while creating class javax/mail/internet/NewsAddress
ORA-01031: insufficient privileges
Error while creating class javax/mail/internet/UniqueValue
ORA-01031: insufficient privileges
Error while creating class javax/mail/NoSuchProviderException
ORA-01031: insufficient privileges
Error while creating class javax/mail/search/SizeTerm
ORA-01031: insufficient privileges
Error while creating class javax/mail/Flags
ORA-01031: insufficient privileges
Error while creating class javax/mail/internet/InternetAddress
ORA-01031: insufficient privileges
Error while creating class javax/mail/MessageAware
ORA-01031: insufficient privileges
Thanks
Jeff

I looked through the link you posted and found this section.
You must have the CREATE PROCEDURE privilege to load into your schema, and the CREATE ANY PROCEDURE privilege to load into another schema.
I verified that I in fact did have those priviledges and tried again with the same result.
If you could point me at the praticular place in the document or give me the priviledges I would greatly apprecaite it.
Thanks
Jeff
null

Similar Messages

  • "insufficient  privilege" ERROR?

    I'm a very newbie to Oracle world.....
    It seems the installer or DBCA not have enough privilege to create Database....
    How to fix this "insufficient privilege" ERROR?

    the below text shows what problem I fight with......
    bash-2.03$ sqlplus "/as sysdba"
    SQL*Plus: Release 9.0.1.0.0 - Production on Thu Mar 23 03:22:20 2006
    (c) Copyright 2001 Oracle Corporation. All rights reserved.
    Connected to an idle instance.
    SQL> grant sysdba to oracle
    2 ;
    grant sysdba to oracle
    ERROR at line 1:
    ORA-01034: ORACLE not available
    SQL> conn oracle
    Enter password:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    SVR4 Error: 2: No such file or directory
    Warning: You are no longer connected to ORACLE.
    SQL>

  • How do i get past the "do not have sufficient privileges" error message installing flashplayer?

    how do i get past the "do not have sufficient privileges" error message installing flashplayer? i've googled the problem and seen the other solutions and for some reason cannot get any of them to work for me.

    I've recommended several things here in the forums and like you, I've seen zero success.
    Run as Administrator = no luck.
    Take ownership of the c drive = no luck.
    Create a new (admin) account = no success.
    I've even seen one poster who reformatted and reinstalled Window 7, and no luck.
    Frankly, I'm at a total loss.

  • ORA-01031: Insufficient privileges error in upgrading from 9.2.0.5 to 10.2

    Hi, I am using DBUA to upgrade oracle 9i database to 10g. In step 1 of 7 when I select 9i datagase to upgrade I get ORA-01031: Insufficient privileges error. However, I can connect to the database from 9i as well as 10g using SQLPlus. Any idea what could be going wrong? Thanks. Manish
    Edited by: user635081 on Jul 22, 2009 10:38 AM

    Check your REMOTE_LOGIN_PASSWORDFILE . If it is set to NONE, then make sure that SQLNET.AUTHENTICATION_SERVICES = (NTS) in your sqlnet.ora file.
    the OS user should be in ORA_DBA group.
    Try connecting as SYS,
    SQL> sqlplus /nolog
    SQL> connect / as sysdba
    HTH
    Anantha

  • "Insufficient privileges"-error when starting database when on network

    Hi
    I have an Oracle 9.2.0.5 database installed on my laptop (Windows 2000 Prof), but I have a small problem.
    When I'm plugged in to the company's network, I can start the database normally.
    However, when I'm not connected to the company network, i.e. only logged in locally on my laptop, then I get an ORA-01031 Insufficient Privileges error when I start the database. Therefor, I can't do anything.
    When I'm plugged into the company network, start the database, and then unplug my laptop, I can still connect to the database. So I guess it checks some userrights only when it starts the database.
    I checked the user account settings, and my user is a local administrator, and is in the ORA_DBA usergroup.
    Does someone know which setting I have to change?

    You can install MS Loopback Adapter on your system and assign an IP Address to the loopback adapter. You should then be able to work even when not connected to the network.
    Mudassar Choudhry.

  • ORA-01031 insufficient privileges  error when selecting from a view

    OK I think this might be a dumb question but I can't figure it out:
    User John has been granted SELECT privilege (directly, not through a database role) to schema FRED.table1;
    User John can issue select * from FRED.table1; and it works just fine.
    User John has then been granted SELECT privilege (directly, not via a database role) to schema
    MARK.view1;
    MARK.view1 only selects from FRED.table1. No other tables are in the view1.
    Schema MARK can successfully query the views. SELECT * FROM VIEW1 returns results.
    I also checked the MARK schema to ensure that it has been granted SELECT on FRED.table1 directly which it has.
    Now, when logged into schema John, I try SELECT * FROM MARK.VIEW1; and I get ORA-01031 insufficient privileges error.
    I'm not sure how to troubleshoot this. If John is granted SELECT ANY TABLE, it of course works but I don't want John to have that powerful priv.
    To recap, John has SELECT on both MARK.VIEW1 and the table which VIEW1 selects from (FRED.TABLE1).
    John can select from FRED.TABLE1 no problem but receives a privilege error even though John has SELECT on MARK.VIEW1.
    Any thoughts?
    Oh, Oracle EE 10.2.0.4

    JSebastian wrote:
    OK I think this might be a dumb question but I can't figure it out:
    User John has been granted SELECT privilege (directly, not through a database role) to schema FRED.table1;
    User John can issue select * from FRED.table1; and it works just fine.
    User John has then been granted SELECT privilege (directly, not via a database role) to schema
    MARK.view1;
    MARK.view1 only selects from FRED.table1. No other tables are in the view1.
    Schema MARK can successfully query the views. SELECT * FROM VIEW1 returns results.
    I also checked the MARK schema to ensure that it has been granted SELECT on FRED.table1 directly which it has.
    Now, when logged into schema John, I try SELECT * FROM MARK.VIEW1; and I get ORA-01031 insufficient privileges error.
    I'm not sure how to troubleshoot this. If John is granted SELECT ANY TABLE, it of course works but I don't want John to have that powerful priv.
    To recap, John has SELECT on both MARK.VIEW1 and the table which VIEW1 selects from (FRED.TABLE1).
    John can select from FRED.TABLE1 no problem but receives a privilege error even though John has SELECT on MARK.VIEW1.
    Any thoughts?
    Oh, Oracle EE 10.2.0.4Are you certain John has been granted select on Mark.view1 ? In order for that to work Mark would have to have been given select on Fred.table1 WITH GRANT OPTION ... otherwise the grant would fail and then John would not be able to select from the view because the grant was never successfully issued.
    Here's a basic test case (which i think conforms to what you've outlined) to get it working.
    drop user u1 cascade;
    drop user u2 cascade;
    drop user u3 cascade;
    create user u1 identified by u1;
    grant connect, resource to u1;
    create user u2 identified by u2;
    grant connect, resource, create view to u2;
    create user u3 identified by u3;
    grant connect, resource to u3;
    connect u1/u1@orcl
    create table test1 (col1 number);
    grant select on test1 to u2 with grant option; --> this is the important part
    grant select on test1 to u3;
    connect u2/u2@orcl
    create view test2 as select * from u1.test1;
    grant select on test2 to u3;
    connect u3/u3@orcl
    select * from u2.test2;

  • "ora-01031 insufficient privilege" error

    We are getting "ora-01031 insufficient privilege" error while registering Apps as target user in production environment.
    We tried to add the user using below method
    · Design Center / Global Explorer / Security / Users -> Right click -> New user
    · Repository assistance.
    · Given the OWB owner as the DBA privilege.
    Please let me know how to investigate further
    Thanks a lot for your help.

    Hi!
    Please check the following query after the user registration. But the question is, are you registering the users with the repository owner?
    select * FROM user_role_privs;
    Regards.
    Sebastian

  • Creating procedure in sys with other schema... privileges error

    Hello,
    I am trying to create or replace a procedure under SYS but logged in with another schema called ABC.
    This ABC schema does have the proper grants ( alter , create etc... any procedure )
    but I get the insufficient privileges error ORA-01031: insufficient privileges
    Can this be done at all as I would need to be logged in with this ABC schema in order to serve my purpose.
    Thanks

    jrmtl wrote:
    I have created a procedure under SYS ( because we don't want it anywhere else ) which does an ""alter user and grant sysdba"" over to another another user.
    I granted execute to this user ABC ( grant execute on SYS.xxxxxxx to ABC )
    And I still get a
    ORA-01031: insufficient privileges
    what am i mising ?
    ThanksAnd why would you want to do that? You shouln't be granting sysdba to any but a very small group of DBA's. You can do it at a command line in less than two minutes. Why do you need to bake it into a procedure to be executed from Grid?
    If anything, your explanation just took your intention from bad to worse.

  • SQL Workshop insufficient privileges error :-S

    Hi everyone,
    The problem I have is when I try to compile a procedure, function or whatever I get the ORA-01031: insufficient privileges error.
    I tryed to give the DBA role to the APEX_PUBLIC_USER without success.
    I tryed to grant the "execute" (on an especified procedure or function for testing purposes) privileges to that user and I still getting the error. :-S
    I can compile any object from the SQL Navigator but APEX.
    What am I missing?
    Hope u could help me :)
    Thanks in advance,
    Fury Morales.

    You should not be messing around with the grants made to the APEX product accounts (FLOWS_xxx etc).
    Scott's suggestion is to have your workspace parsing schema be granted the 'create procedure' privilege.
    From sqlworkshop you can the run query below to determine the 'system' privileges granted to the workspace schema
    select privilege from user_sys_privs;
    Varad
    Edited by: varad acharya on Jul 28, 2009 4:32 PM

  • Cant adjust privileges error on dev workplace

    Hi all,
    I installed the developer workplace on my local machine. The installation went through fine and the server came up fine once. At that point, I restarted the machine and now when I try to start the server, I get the following error:
    can't adjust privileges
    ERROR => can't adjust privileges (rc=1300) [jstartnt.c   1056]
    ERROR => can't set privilege (rc=-1) [jstartnt.c   961]
    (RC=1300 jstartnt.c 1056 and RC=-1 jstartnt.c 961 )
    Thanks in advance.
    Regards
    Raj Balakrishnan

    Hi Pascal,
    1. Make sure you have local admin access to the machine
    2. Make sure the SAPDB:<sid> service is started.
    3. Make sure the useraccounts, sapservice<sid> and <sid>adm are atleast in the local administrators group.
    4. make sure the property jstartup/trimming_properties is set to off in the file <sid>_jc00_<hostname> which can be found in the following location c:\usr\sap\<sid>\sys\profile\
    5. make sure if a locally installed firewall is not causing the issue.
    Thanks
    Raj Balakrishnan
    P.s. I logged in using a different account.

  • Get ORA-01031: insufficient privileges error, but only when using dbstart.

    I am getting ORA-01031: insufficient privileges error, but only when using dbstart. the listener starts but not the database. How come I can start it from SQL prompt but not from dbstart scripts as the oracle user?
    [oracle@mallard bin]$ ./dbstart
    Processing Database instance "gf44": log file /prod/oracle/10/startup.log
    [oracle@mallard bin]$
    Log file:
    Wed Aug 20 10:15:02 CDT 2008
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Aug 20 10:15:02 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> ERROR:
    ORA-01031: insufficient privileges
    SQL> ORA-01031: insufficient privileges
    SQL>
    /prod/oracle/10/bin/dbstart: Database instance "gf44" warm started.
    >
    oratab file:
    gf44:/prod/oracle/10:Y
    dbstart file section:
    # See if it is a V6 or V7 database
    VERSION=undef
    if [ -f $ORACLE_HOME/bin/sqldba ] ; then
    SQLDBA=svrmgrl
    VERSION=`$ORACLE_HOME/bin/sqldba command=exit | awk '
    /SQL\*DBA: (Release|Version)/ {split($3, V, ".") ;
          print V[1]}'`
    case $VERSION in
    "6") ;;
    *) VERSION="internal" ;;
    esac
    else
    if [ -f $ORACLE_HOME/bin/svrmgrl ] ; then
    SQLDBA=svrmgrl
    VERSION="internal"
    else
    SQLDBA="sqlplus /nolog"
    fi
    fi
    Permissions of file:
    [oracle@mallard bin]$ ls -la dbstart
    -rwxrwxr-x 1 oracle oinstall 10407 Aug 19 12:27 dbstart
    [oracle@mallard bin]$
    User permissions:
    [root@mallard 10]# id oracle
    uid=503(oracle) gid=503(oinstall) groups=503(oinstall),504(dba)
    [root@mallard 10]#
    I can start the listener manually using "./lsnrctl start" and start the database manually from sql prompt using "SQL>startup" (as sysdba) with no problems. this only happens when using dbstart file. I am logged in as oracle user and all environment variables are set
    Thank you for any help you could provide.

    I have the same problem, but i don't want insert this string
    Connect sys/{password} as sysdbaI have deployed an Oracle 10g with os SunOS
    $ uname -a
    SunOS DB02 5.10 Generic_141444-09 sun4v sparc SUNW,Sun-Blade-T6320
    I can connect with sys/password, but I can't login with
    $ sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jan 7 15:19:50 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    SQL> connect / as sysdba
    ERROR:
    ORA-01031: insufficient privilegesthe the startup and dbshut don't work.
    Someone maybe help me?
    Thanks,
    Regards.
    Lain

  • TS1609 "apple device service failes to start.verify ou have sufficient privileges"error message when installing

    "Apple device service fails to start.Verify you have sufficient privileges"error message when installing

    I think i know what you are talking about. I think its just the case that you must take out your device and then plug it back in again and it should work hopefully. Hope that helps . If not im sorry

  • Privilege error while running Create Table Script inside Stored Procedure.

    Hello All,
    I have Oracle 10G server and SQL Developer Client,
    I have One User with Appropriate Rights, Login with that user from SQL Developer(client),
    Within my Procedure, Dynamic SQL script is like If I pass in a TABLE NAME as parameter, It Creates that table, but now problem is It throws an error for Privilege.
    Where as if I Execute Create table script outside the procedure(as Normal SQL), it executes Ok, but why it throws Privilege error within procedure ?
    Whether any extra Rights needed for this user to execute such Create Table Dynamic SQL?
    Please Help.
    Thanks,
    j@y

    Elic
    Thanks a lot dude...
    It works now,
    regards,
    j@y

  • CR 2011 - admin privileges error

    I have tried domain admin and local admin accounts to install CR, all of which give me the admin privilege error.  I then proceeded to uninstall anything that could be using a older version of CR and tried the install again, still no luck.  Has anyone run into this issue before?
    Edit: Windows 7 Pro 32-bit
    Edited by: jcross on Sep 15, 2011 4:20 PM

    I got some help from Coy on this.  Looks like it ended up being a corrupt dll file.  Redownloading the software cured the issue.  I will not that I was able to install on win xp with the original download just not win 7.  I figure this is due to the permissions of win 7. 
    Thanks for the help

  • Use oes management api get "No privilege" error

    Hi all,
    i try to use oes management api to manage my application's entitlements.
    but while i coding get a “No privilege” error , any suggest ?
    regards
    java code:
    RBAC_Manager mgr = null;
    RBAC_Context rbacCtx = null;
    mgr = new RBAC_Manager(new URL("https://10.1.18.4:7011/servlet/AxisServlet/blm"),"admin","password");
    rbacCtx = mgr.createContext();
    System.out.println("user -> " + rbacCtx.getLoginUser());
    ScopeManager scopeMgr = rbacCtx.getScopeManager();
    Organization o = scopeMgr.getRoot();
    rbacCtx.setScope(o);
    Scope s = rbacCtx.getScope();
    s = scopeMgr.getScope("ejianlong");
    rbacCtx.setScope(s);
    scopeMgr = rbacCtx.getScopeManager();
    scopeMgr.createApplication("jlerp_a");output:
    user -> //user/RootOrg!AdminDir/admin/
    com.bea.ales.management.exception.ManagementException: No privilege to create Application jlerp_a under RootOrg!ejianlong
         at com.bea.ales.management.ScopeManager.createApplication(ScopeManager.java:156)
         at com.jl.test.model.Class1.main(Class1.java:36)Edited by: Lighting Cui on 2011-9-12 下午5:34

    Have worked it out...
    In case anyone else has the same thing happening, the issue was with the external hard drive. I had read-only privileges while it was connected to my new MacBook. It's a Seagate GoFlex. Had to download the NTFS for Mac driver from their website
    http://www.seagate.com/au/en/support/external-hard-drives/desktop-hard-drives/ba ckup-plus-desk/ntfs-driver-for-mac-os-master-dl/
    and installed it on the laptop. Then I selected the GoFlex volume, Command I and changed the access to read and write. Problem solved.

Maybe you are looking for

  • Problem redering h:outputText tag on a jsp fragment

    Hello to all... I'm trying to understand and use this new technology and I have encountered a problem that I cannot find any documentation as how to solve it. First I have my welcome.jsp page that I am using to call my fragment: <%@page contentType="

  • BW Browser 3.x crashing in Vista

    Hi all, We're rolling the latest SAPGUI/BW 3.x tools to users as we're rolling out Office07. We're having few machines crashing with the following error. Please help! Faulting application wdbbapp.exe, version 3571.4.0.54, time stamp 0x48ec7cd9, fault

  • Using Select Statements

    Hi, I got error message when execution of my program..it says.. error 23 when accessing table vttk. and the program got terminated at  statrt of selection point itself. here is the select statement I have used..can someone help me out in fixing this.

  • Archive Billing document

    Dear All, There are some billing document in our production system which is archived , I can see the accounting document but Billing document is not shown in VF03, system gives message that "This document was possibly archived". Also in document flow

  • Iphone 3GS cannot send MMS

    My phone cannot send MMS for some reason. Tried: 1. Making sure about the mms availability and setting with my network provider 2. Restoring the phone -- work when first restored to factory setting, but then not working when restored to my own settin