Insufficient privilege: Can't export objects in schema..user has no privilege on the underlying objects

I'm using SYSTEM user but
HDBSTUDIO continues on triggering this error when I try to export the catalog:
SAP DBTech JDBC: [258]: insufficient privilege: Can't export objects in schema DARTEL_TRANSPORTES. Can't export procedure DARTEL_TRANSPORTES.PAL_TRIPLE_SMOOTH_WRAPPER. user has no privilege on the underlying objects
When trying to grant the SYSTEM user to that particular object  I get a new error : Could not modify user 'SYSTEM'. Several issues occurred
Have anyone have struggled with this error before, any help will be highly appreciated
Kind Regards

rev 69 too
tomorrow I will have the webex and let you know
Something happenned after my customer change the suse's server IP, I had to perform a re-installation of SAP Business One only
We were supposed to install using the hostname but no one of the installers let me use the hostname
so it Kind of forced me to use the IP.
After asking Support about that one of the specialists told me that he prefers to use IP instead of the hostname. So I used IP.
Maybe this changed something I cannot detect yet. but tomorrow we'll see.
KR

Similar Messages

  • 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

  • How can i export a XML Schema

    Hi!
    I'm a newbie and i've export a XML file but how can i export a XML Schema from a database?
    With best regards
    Nicole

    Hi Nicole
    I never seen a tool/package/... in the DB that generates the XML Schema for a whole DB schema.
    Anyway you can find some generation capabilities in:
    - package DBMS_XMLSCHEMA (method GENERATESCHEMA)
    - XDK's utility XSU (option -withSchema)
    Chris

  • How can I get the underlying object from the ObjectReference

    Dear friends,
    I think this question has been asked a couple of times. But, I am still wondering if anybody has found an answer to it. Maybe this is some common need ...
    I would like to get the underlying object for which the ObjectReference is
    a mirror For example, I have a class Customer in my application, and I can get an ObjectReference through JDI during runtime. But how can I get the target VM's object which is a real instance of Customer, by which I can invoke methods defined in Customer?
    Thank you so much for any input!
    SunnyDay

    I'll preface this response by admitting this far from an elegant solution, but I did write a function addressing this question, mostly as an exercise.
    If passed an object with an InTextFrame property (Pgf, AFrame, Cell, Fn) that resides in an open document, the function will return the Doc object. Otherwise, it returns undefined.
    function getParentDoc(testObj) {
        //Get object for current page
        try { var curPage = testObj.InTextFrame.FrameParent.PageFramePage; }
        catch(er) {return;}
        //Step backwards to first page in document
        var prevPage = curPage.PagePrev;
        while (prevPage.ObjectValid())
            curPage = prevPage;
            prevPage = prevPage.PagePrev;
        //Compare with first pages of open documents
        var testDoc = app.FirstOpenDoc;
        while (testDoc.ObjectValid())
            if (curPage.id==testDoc.FirstBodyPageInDoc.id) return testDoc;
            testDoc = testDoc.NextOpenDocInSession;    
        return;
    To your PPS: Rather than seeing the native framework grow bloated to address additional features, I would love to see Adobe and other developers publish libraries of useful functions and class extensions.

  • Query to get objects list for which the current user has 'SELECT' privilege

    Hi,
    I want to get tables and views list for which the current user has 'SELECT' privilege excluding sytem tables and views. The privilege information for the current user is scattered in more than one system views. I have following system views
    USER_TAB_PRIVS_RECD - Object grants for which the current user is the grantee
    ROLE_TAB_PRIVS - describes table privileges granted to roles. Information is provided only about roles to which the user has access.
    If the object privilege is granted explicitly like "GRANT ALL ON TABLE_NAME TO "USERNAME" then this privilege entry goes to USER_TAB_PRIVIS_RECD
    If the object privilege is granted by ROLE. Role is created with certain object privileges. this role is assigned to user "GRANT ROLE_NAME TO "USERNAME"", then this entry goes to ROLE_TAB_PRIVS
    From these findings, I have composed below query
    (SELECT DISTINCT TABLE_NAME FROM USER_TAB_PRIVS_RECD) UNION (SELECT DISTINCT TABLE_NAME FROM ROLE_TAB_PRIVS WHERE PRIVILEGE = 'SELECT')
    Have I got user's all prvilege details? should I look some other system views?
    How to exclude system table privileges details?
    (SELECT DISTINCT TABLE_NAME FROM USER_TAB_PRIVS_RECD) UNION (SELECT DISTINCT TABLE_NAME FROM ROLE_TAB_PRIVS WHERE PRIVILEGE = 'SELECT' AND OWNER NOT IN ('SYS','SYSTEM') Is this right?
    What about Public role in Oracle? Should I consider public role here?
    Oracel Version :11g
    I want make this query to work on Oracle 8i or above version
    Thanks

    >
    I want to get tables and views list for which the current user has 'SELECT' privilege excluding sytem tables and views.
    >
    You will need a hierarchical query to do that.
    Try this script for Listing privileges recursively for Oracle users
    http://www.adp-gmbh.ch/ora/misc/recursively_list_privilege.html

  • User has no privileges on the APEX_040200 schema.

    Recently upgraded to APEX 4.2, when installing a package application I get the following error 'User has no privileges on the APEX_040200 schema."
    Has anyone encounter this error?
    Thank you,
    Ivan

    Are you installing it through the application builder or through sqlplus?

  • Missing all export options in Adobe Premiere (can only export to final cut pro xml). Where are the options?

    Missing all export options in Adobe Premiere (can only export to final cut pro xml). Where are the options?

    There never was a trial version of FCP7. The application was only ever sold as part of the Final Cut Studio suite of applications. You might still find copies on eBay.

  • How can I find out if a user has an active session

    How can I find out if a user has an active session or sessionObject in the application Server.
    When a user logs on to my web-application, I want him to be able to see a
    list of all the other users that are also loged on. To do this I need to get a
    list of all the session objects avaliable in the sever at that perticular moment?
    In J2EE 2.1 I found the class "javax.servlet.http.HttpSessionContext" with the method "getIds()"
    that returned all the session Id's. By using the method getSession(java.lang.String sessionId)
    from the same class, you could then retrieve the sessionObject.
    But these methods are depricated (and want to be able to use the
    latest version of J2EE).
    Is there any other way to do this?
    I'm using JBoss application server.

    Check out HttpSessionListener -> http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/http/HttpSessionListener.html
    Essentially what you have to do is implement this interface. You also have to register the listener in your web.xml, like this:
    <listener>
        <listener-class>
            package.name.YourListener
        </listener-class>
    </listener>sessionCreated() will get called each time the app server creates a session and sessionDestroyed() will get called each time the app server invalidates a session. You could have a Map that contains all the active sessions, and a method for printing a list of all of the active sessions.

  • User has no privileges on the schema when entering SQL Workshop

    I installed Oracle Apex 4.0 and created a workspace in a new schema called APEX_TEST. Later on I reassigned the workspace to the existing schema TEST and then when an admin or developer user clicks on the SQL Workshop button this error appears :
    Help
    ORA-20000: User FARS has no privileges on the APEX_TEST schema.
    The user still has access to the object browser or SQL Commands pages but there are no object or SQL result showing.
    Did I forget to give a privilege from TEST to APEX ? If I can't resolve the issue I can create another workspace this is only a testing workspace.
    Thank you
    Francis

    I tried to match the APEX user default schema with the workspace new schema and still had the same error. The error appears even if I give access on multiple workspace to the user.
    If I change them both to the APEX_TEST it works but the user cannot access the objects in the TEST schema without synonyms.
    The best thing to do would be to create a new schema and start over again ou export/import the applications.
    Edited by: APQ on Jul 15, 2010 2:16 PM

  • Can't i use xml schema and oledb data connection at the same time?

    Hello to all and thanks in advance.I use xml schema and oledb data connection at the same time and the problem is that when I try to export the xml, the outcome is not what i expect.Without the oledb connection everything is ok (just the schema) and the xml complies with the schema.
    Can't i have both schema and oledb and the exported xml be as i want it?

    You can use both at the same time, but not gor Internet access if that's what you're asking.
    Now there is a thing called Link Aggregation, which combines a number of interfaces for speed/redundancy, but it really only works locally, and then only with ALL special equipment in the route, and most likely OSX Server involved.
    Sorry.

  • I can't export contacts from iPhone5 with iOS6.0.1 to the Comand NTG4-W204 (Mercedes C280 2008). I can pair its by Bluetooth,call, speak via Comand but no chance to load contacts to Comand from my iPhone5?

    I can't export my contacts from iPhone5 with iOS6.0.1 to the Comand NTG4-W204 in Mercedes C280 2008. No problem with pair both devices,call and speak,good voice quality, just impossible contacts loading to the Comand. This is frustrating, any other mobile phone does it, but iPhone5 doesn,t...???
    I don't know where is the reason of this problem in iPhone5 or in Comand and what and where something should be updateed, upgraded, installed, reinstalled..etc HELP!

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • Export all a schema (user)?

    I need to export all my schema to import it after install release 10.2 (now working with 10.1). In the Utilities manual I see "Import/Export Datapump" and "Original Import/Export", which one of them I have to use to export my schema (user)?
    Thanks in advance.

    Hi,
    Please use Data Pump............
    - Sanjay Bali

  • Publish to Apex - User has no privileges on the selected workspace

    Apologies for this novice question,... (re: Apex 4.1.0)
    I am trying to publish output from SQL Developer into Apex via the "Publish to Apex" option, but get the error:
    ORA-20001: User <XXX> has no privileges on the selected workspace.
    ORA-06512: at "APEX_040100.WWV_FLOW_CREATE_APP_FROM_QUERY", line 535
    ORA-06512: at "APEX_040100.WWV_FLOW_API", line 14966
    ORA-06512: at line 1
    Is there an apex privilege I need to grant manually, or somewhere in the front end of APEX to make this work?

    I can't say I've ever used that option, but based on the error, I would suggest your particular schema is not associated with the workspace you selected.
    This means you need to log into the INTERNAL admin workspace and associate your schema with the desired workspace.
    In the same way you can't use the Apex front end to create an application using a schema not associated with the given workspace.
    Make sense?

  • How can I count  time that a computer has been connectted with the internet

    I want to count the time which a computer has been connectted with the internet?
    I had already tried several times,
    one is socket,
    second is Runtime.exec("ping -n 1"+ip)
    I don't think they are better;
    do you have another idea?

    The internet is a conceptual entity not a physical entity so you are never connected to it.
    As a conceptual entity the internet is represented by a cloud of computing devices (computers, gateways, routers, etc.)
    Your computer connects to a another computer by being routed through various devices and then finally connecting to that remote computer.
    Depending on various thing you can measure the time that you can connect to other devices by either pinging a common IP in the internet (such as yahoo.com) or by pinging the router that that represents the entry point for your cloud (such as the router/gateway of your ISP.)
    If you are concerned about a particular connection, such a specific remote computer, then using a socket and sending a 'keep-alive' message and recieving the response is the best way to track that.

  • Can i see what questions a user has answered incorrectly??

    Hi
    We have various Captivate training modules that are placed on a GeoLearning LMS.
    All the modules have 5 Questions at the end. The quiz preferances are set up in such away that the user is required to get 100% to pass and is allowed to retake the quiz one more time if they fail first time round.
    My issue is that some of our users in Malaysia are failing the course even after the second attempt.... yes its fine and simpl enough to re-asign them the course but ideally i would like to see what question they are failing on.... if there is a trend then maybe there is a gap in the actual training material.
    Is it possible for me to review the quid the user has taken and understand where thay are answering incorrectly?
    Any help appreciated
    Darren

    All
    i have been using this Wodget now and the data is appearing on the adobe dashboard .. Brilliant
    1 question... if i have a course set so the user can retake the quiz another time if they get it wrong will there quiz results be sent to the dashboard twice, or will only the second attempt be logged?
    For example i have a module with 5 questions and a pass rate of 100%
    If the user gets 2 questions wrong they then have the option to retake... hopefully then getting them all correct... if not they then Fail the course and need to be re assigned it.
    If they pass on the second attempt will the dashboard show that the 5 questions have been taken twice and 2 were answered incorrectly the forst time... or will just the second attempt here they got them all correct be logged?
    Thanks

Maybe you are looking for

  • HT204371 Hallo - I'm sure this question has been asked many times before but still can't get my head around it

    I have an 'n' version Airport Express (1st Generation) and want to use it to AirPlay music from iTunes on my Mac to my HiFi in the next room. That's all I want to use it for. Have set it up to join an existing wireless network. However it will only w

  • How do i add windows to my macbook pro

    I just bought windows 8.1 software and i was wondering how to install it onto my macbook pro? I was told a program called parralels or fusion could do it but i could not find them. How do i install windows and still have OS X available?

  • How do I add entries to PCManFM's right-click menu? [SOLVED]

    Hello there, Is there a way to customize PCManFM right-click menu? I'd like to add custom entries, for instance: right click a folder and choose "Start slideshow" to get the following command executed: "qiv -smt <selected_folder>" Can this be done? H

  • Questions aplenty

    Multiple questions: 1. Is it possible to use two different sort functions in conjunction? For instance, say I want to sort my artists by how much of their music I have? 2. Does iTunes have a function that gives a database or graph of such data? 3. Is

  • [solved] asciidoc -- pdf/roff

    Hi, I am playing around with asciidoc, and already can convert some stuff to html, but not to pdf/roff. This is done by a script called a2x. According to the manpage, this requires: - xsltproc (presumably named libxslt in Arch) - DocBook XSL Styleshe