Comparing the object privileges

hi,
i have used export and import across different databases using fromuser and touser clause. i can see 50 object privileges are missing after import. could not find the correct using the log file.
by firing the below query i am getting lot of results like more then 500 rows..
select grantee,privilege,owner,table_name from dba_tab_privs where grantee ='SCHEMANAME';
is there any way i can find the missing object privileges?

user13051945 wrote:
i can see 50 object privileges are missing after import
is there any way i can find the missing object privileges?
Aren't you contradicting yourself here?
Why, if you can see 50 are missing, can you not find them?
How do you see it?

Similar Messages

  • How to compare the object's properties

    Hi ,
    I have a requirement like to compare two objects data. But the object will have different types of parameters and it will have some other classes as properties. My utility has to compare for all the properties of the object including other classes properties which are included as properties in the main object also.
    Can we achieve using java reflection this requirement.
    If any one has idea reg this , plz help me.
    thanks
    Prakash

    hari_honey wrote:
    No , actually i have to generate the change log of object data.
    If any property of the object is changed and that has to go to the change log table with the
    property name and old and new value.Sounds expensive and complex.
    Presumably you can't change the code.
    Presumably you can't provide a proxy layer.
    Have you consider code injection?

  • Different ways to compare the java objects

    Hi,
    I want to compare rather search one object in collection of thousands of objects.
    And now i am using the method which uses the unique id's of objects to compare. still that is too much time consuming operation in java.
    so i want the better way to compare the objects giving me the high performance.

    If you actually tried using a HashMap, and (if necessary) if you correctly implemented certain important methods in your class (this probably wasn't necessary but might have been), and if you used HashMap in a sane way and not an insane way, then you should be getting very fast search times.
    So I conclude that one of the following is true:
    1) you really didn't try using HashMap.
    2) you tried using hashmap, but did so incorrectly (although it's actually pretty simple...)
    3) your searches are pretty fast, and any sluggishness you're seeing is caused by something else.
    4) your code isn't actually all that sluggish, but you assume it must be for some reason.
    Message was edited by:
    paulcw

  • How to view object privileges of a user in Oracle10g?

    I try to view the object privileges of a user through the table user_object_privs but it didn't work. I didn't get the correct name of the table or there were some problem with my Oracle. Please help me. Thanks a lot.

    Thanks, that link helped me out. I was looking for this:
    SELECT OWNER, TABLE_NAME, GRANTEE, PRIVILEGE FROM DBA_TAB_PRIVS WHERE GRANTEE='<put name here>';

  • Whats the available privileges on a table column

    Dear all,
    i want to know whats the available privileges that i can assign on a table coulmn.
    and the revoke privileges
    Best Regards,
    Shooosh

    If I have well understands, the principals are
    The following are the object privileges that can be granted to users of the
    database:
    SELECT Grants read (query) access to the data in a table, view, sequence,
    or materialized view.
    UPDATE Grants update (modify) access to the data in a table, column,
    view, or materialized view.
    DELETE Grants delete (remove) access to the data in a table, view, or
    materialized view.
    INSERT Grants insert (add) access to a table, column, view, or
    materialized view.
    EXECUTE Grants execute (run) privilege on a PL/SQL stored object, such
    as a procedure, package, or function.
    GRANT SELECT, UPDATE ON CUSTOMER TO JAMES;
    You can revoke a user’s object privileges and system privileges by using the
    REVOKE statement.
    but I believe that you am more profit reading manual: dba administrator or sql reference

  • Userdefined Sorting the objects using comparator

    Hi All,
    I want to display the objects in a userdefined order. I have placed the code snippet below. Kindly help me on this to resolve this issue.
    public class ApplicabilityObject1 implements Comparable{
         private String str;
         public ApplicabilityObject1(String str) {
              this.str = str;
         public boolean equals(Object obj) {
              return getStr().equals(((ApplicabilityObject1)obj).getStr());
         public String toString() {
              return str;
         public String getStr() {
              return str;
         public void setStr(String str) {
              this.str = str;
         public int compareTo(Object arg0) {
              final int equal = 0;
              final int before = -1;
              final int after= 1;
              int returnvalues  = 0;
              System.out.println(this);
                                    if ("Mexico"==((ApplicabilityObject1)arg0).getStr())
                   returnvalues = -1;
              else if (((ApplicabilityObject1)arg0).getStr()== "Canada")
                   returnvalues =  0;
              else if (((ApplicabilityObject1)arg0).getStr()== "USA")
                   returnvalues = 1;
              return returnvalues;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    /*import org.apache.commons.beanutils.BeanComparator;
    import org.apache.commons.collections.comparators.FixedOrderComparator;*/
    public class SortOrder {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              APPComparator app1 = new APPComparator();
              ApplicabilityObject1 obj1 = new ApplicabilityObject1("Mexico");
              ApplicabilityObject1 obj2 = new ApplicabilityObject1("Canada");
              ApplicabilityObject1 obj3 = new ApplicabilityObject1("USA");
              ApplicabilityObject1 obj4 = new ApplicabilityObject1("Mexico");
              ApplicabilityObject1 obj5 = new ApplicabilityObject1("USA");
              ApplicabilityObject1 obj6 = new ApplicabilityObject1("USA");
              ApplicabilityObject1 obj7 = new ApplicabilityObject1("Mexico");
              ApplicabilityObject1 obj8 = new ApplicabilityObject1("Mexico");
              ApplicabilityObject1 obj9 = new ApplicabilityObject1("Canada");
              List list = new ArrayList();
              list.add(obj1);
              list.add(obj2);
              list.add(obj3);
              list.add(obj4);
              list.add(obj5);
              list.add(obj6);
              list.add(obj7);
              list.add(obj8);
              list.add(obj9);
              Collections.sort(list, app1);
              System.err.println(list);
              System.out.println(Integer.MAX_VALUE);
    class APPComparator implements Comparator
         ApplicabilityObject1 appO = new ApplicabilityObject1("USA");
         @Override
         public int compare(Object arg0, Object arg1) {
              // TODO Auto-generated method stub
              return ((ApplicabilityObject1)arg0).compareTo(arg1);
    }I'm expecting the result in the Order of USA, CANADA, MEXICO.
    But now the above code giving the result of [USA, USA, USA, Mexico, Canada, Mexico, Mexico, Mexico, Canada]
    Kindly help me to resolve this issue.
    Thanks in advance,
    Maheswaran

    An alternative way to reduce the size of your code.
    //Un-Compiled
    ApplicabilityObject1[] appObs = {
      new ApplicabilityObject1("Mexico"),
      new ApplicabilityObject1("Canada"),
      new ApplicabilityObject1("USA"),
      new ApplicabilityObject1("Mexico"),
      new ApplicabilityObject1("USA"),
      new ApplicabilityObject1("USA"),
      new ApplicabilityObject1("Mexico"),
      new ApplicabilityObject1("Mexico"),
      new ApplicabilityObject1("Canada")};
    List list = new ArrayList(Arrays.asList(appObs));Mel

  • Which view I can query to get the granted objects privilege to a user?

    Hi all,
    which view I can query to get the granted objects privilege to a user?
    for example:
    grant execute on accounting.get_name to scott;
    Which view has above object granted information?
    Thanks

    SQL> select * FROM all_tab_privs where grantor = upper('accounting');
    no rows selected

  • 1)Now I use Lightrom 5.7 how to upgrade to 6 or CC? 2) What is the difference between 6 and CC vercion? 3) When I used lightromm 3, I could see inEXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is ve

    1)Now I use Lightrom 5.7 how to upgrade to 6 or CC?
    2) What is the difference between 6 and CC version?
    3) When I used lightromm 3, I could see in EXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is very sad  I am stiil waiting and hope that it would be possibble in the new  versions. Or this indication may  possible by setting?

    1)Now I use Lightrom 5.7 how to upgrade to 6 or CC?
    Purchase the standalone upgrade from here: Products
    Download CC version from here: Explore Adobe desktop apps | Adobe Creative Cloud
    2) What is the difference between 6 and CC version?
    See this comparison chart: Compare Lightroom versions | Adobe Photoshop Lightroom CC
    3) When I used lightromm 3, I could see in EXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is very sad  I am stiil waiting and hope that it would be possibble in the new  versions. Or this indication may  possible by setting?
    Rob Cole's ExifMeta plugin displays the Subject Distance field (and much more).  Unfortunately, his Web site appears to be down again.  He used to be very active here, but he hasn't posted in several months.

  • How can i access all the objects of one schema from another schema

    Dear All,
    How can i access all the objects(Tables,Views,Triggers,Procedures,Functions,Packages etc..) and do the modifications of one schema from another schema (Without using synonyms concept).
    Thanks in advance,
    Mahi

    First of all, synonyms only help you easy reference the object. It doesn't have any implication of object privilege.
    As long as you have proper privilege on target object. You can access it with or without synonyms.
    Assuming you have proper privilege of objects, you can use following command to assume schema owner.
    ALTER SESSION SET CURRENT_SCHEMA = Schema_owner

  • System and Object privileges question

    hello everyone.
    I was really making it a priority to really understand both system and object privileges for users. I have setup a couple of 'sandboxes' at home and have done lots of testing. So far, it has gone very well in helping me understand all the security involved with Oralce (which, IMHO, is flat out awesome!).
    Anyway, a couple of quick questions.
    As a normal user, what view can I use to see what permissions I have in general? what about permissions on other schemas?
    I know I can do a:
    select * from session_privs
    which lists my session privileges.
    What other views (are they views/data dictionary?) that I can use to see what I have? Since this is a normal user, they don't have access to any of the DBA_ views.
    I'll start here for now, but being able to see everything this user has, would be fantastic.
    Cheers,
    TCG

    Sorry. should have elaborated more.
    In SQLPLUS, (logged in while logged into my Linux OS), I am working to try and get sqlplus to display the results of my query so it is easy to read. Right now, it just displays using the first 1/4 or 1/3 of the monitor screen to the left. Make sense? So it does not stretch the results out to utilize the full screen. it is hard to break down and read the results because they are "stacked" on top of each other.
    Would be nice if I could adjust sqlplus so the results are easier to read.
    HTH.
    Jason

  • While Activating the Object(0GL_Account) is locked with Conversion

    Hi All,
       Please provide the solution that when am trying toActivate or to edit the object 0GL_account. It is not getting activated and throwing an error.Am facing the folowing error:
    An error occurred in the program:ORA-20000: Insufficient privileges
    ORA-06512: at "SYS.DBMS_STATS", line 2150
    ORA-06512: at
    Error when activating InfoObject 0GL_ACCOUNT.
    Characteristic 0GL_ACCOUNT is blocked by conversion
    Please check the same and provide the necessary to be taken to solve the error.
    Thanks&Regards,
    Vijayashanthi.

    Have you deleted the master data before activation?
    Also You might have to carry out object conversion in t-code RSRV.
    ALso refer to thread brfore doing any changes
    info object  activation problem
    Regards
    Pankaj
    *********Assign pts if helpful

  • Is there any way to disable the objects owned by a user?

    Hai every body....My problem is..
    I had created 60 users granting them connect and resource privileges in oracle(8.1.5.0.0).All of the users are working under their logins(users)...Every thing is going fine...But now i wanted to disable the objects owned by those users
    (60 Users) for a period of 2 days,After that i wanted to enable them....Is there any way to disable the objects owned by them with out dropping the users?(The users should be able to work as prevoiusly on the new objects they will create after i disabled the objetcts owned by them previously)?

    hi
    if my understanding is right you want to disable the users for 2 days for any reason let say he is on holiday for 2 days then why dont u lock this user and submit the job for unlock after two days.
    Khurram Siddiqui
    [email protected]

  • How to create a new user, USERA, to have all the objects of USERB?

    Question as the title.
    Also, the USERA can only SELECT the objects of USERB.
    There is no any other previlage available to USERA.
    Thanks in advance.

    Hi, If USERA can ONLY see the objects of USERB, than granting SELECT ANY TABLE will not help, with this privilege USERA wil be able to select pretty much any table in the database, except for dictionary tables.
    I think what you need to do is create USERA, create public synonyms for all the tables under USERB, grant select to USERA on all the tables individually owned by USERB( if there are many tables that you can generate a script using SQL).
    This USERA will only have access to USERB tables and has only SELECT access and any other user whom you want to access these tables, you create the same grant script and run it.
    This way you need not have to maintain a seperate copy of all the USERB tables under USERA .
    Hope this helps.
    -Ramki

  • Please help. New CS 4 error: can't move the objects. the requested transformation would make some objects fall completely off the drawing area.

    I know this is not a "new" error message, but I have never gotten it on any previous version of Illustrator. I just upgraded to CS 4 and now get it on virtually every file when I try to nudge an object in any direction. Not that it should matter, but these are files that were created in earlier versions of Illustrator and I never had this problem. I have followed instructions from similar posts to no avail. I have zoomed way out to the edge of the art board: there are no hidden layers, objects, or guidelines, no lingering points from erased guidelines, or objects of any sort anywhere near the edge of the art board (which, I know, is enormous compared to the size of my working 11 x 17 document.)
    What am I missing?
    Also, on occasion, when I CAN nudge an object (usually a JPG or PDF image that I placed in the document), the image just disappears. I think it is still "there" though I cannot see it. Any suggestions?

    I am nudging it by selecting the object and hitting the up, down, or side arrows. Dragging with the mouse works fine, but does not give me the precision I'm looking for. Dragging with the mouse also avoids the "disappearing PDF/JPG" problem.
    I don't know what plug-ins I have. Possibly none.
    I don't use clipping masks. But I did select one object (and then ultimately selected all objects) and went to clipping mask, the "release" function was not active, so I am assuming there are no clipping masks in the document.
    I did attempt to select stray points, nada.
    I have not tried getting rid of the settings folder. Not sure how to do that?
    Also not sure how to take a screen shot to show you. I can tell you that there is only one layer and it is a very simple document with just a JPG image, a few objects and some text.
    Sorry! I hope this helps you help me, I normally just use a few simple tools to produce some basic documents.

  • ADMT 3.2 Group Migration - Include File error: The object was not found in the domain

    Hello,
    I have been digging for weeks and still no answer. I am trying to migrate Group across two domains and if I select the group, it works just fine. But I want to bulk-migrate groups. So I am going the Include-File route. when ever I load the file I get
    the bulk of the groups processed but I get a dialogue box that states:
    The following objects are either not found or do not meet selection requirement. No migration will be performed on these objects.
    Then I get a list a group and the message states:
    The object was not found in the domain "contoso.com"
    Does any one know anything about this or how to fix it? I have compared the files with good/bad versions using ADSI edit and from its POV they look the same.

    Hi,
    Thanks for your post.
    There is an attribute named "showInAdvancedViewOnly" which specifies whether the object is to be visible in the "Advanced" mode of user interfaces. This is to say, if the schema attribute "ShowInAdvanceViewOnly" is set to TRUE for any security principal
    in AD, we would not be able to find that account or group while trying to migrate it except the simple ADUC search. Just as the issue you encountered.
    Therefore, please enable the "Advanced" mode in Active Directory Users and Computers, and then check if the three groups could be migrated or not.
    If anything unclear or you have any questions about this case, please feel free to let me know.
    Thanks and I look forward to your reply.
    Best regards,
    Ann Zhu

Maybe you are looking for

  • Trying to find error in this....

    SQL> desc scott.aftermath; Name Null? Type PROJECTNUM VARCHAR2(6) CONTRACT DATE DONE DATE REASON VARCHAR2(200) LASTCX DATE WHO VARCHAR2(20) REDFLAG VARCHAR2(200) NEXTSTEP VARCHAR2(200) SQL> create or replace procedure add_aftermath 2 (add_projectnum

  • Using my objects as keys in a hash map

    I need the following type of code to work (ClDate is my own class):             var testDic:Dictionary = new Dictionary();             var key1:ClDate = new ClDate(10000);             var key2:ClDate = new ClDate(20000);             var key3:ClDate =

  • Updater wants to update app no longer installed

    The Adobe Updater in my menu (Mac OSX v10.9.1) wants me to update Indesign CS6.  Two things odd about this: 1. Only the OLD updater (with the Adobe "A" icon) is insisting I need an update. The new updater (cloud icon) is fine. 2. I deinstalled Indesi

  • Report generation, 2 own excel charts

    Hello everybody, I tried two 2D Arrays insert in two charts, each 2D Array in its own chart. The problem is in the second chart are the two 2D Arrays. You can see it in the attachments. I hope anybody has a solution. Many thanks in advance for your h

  • How do I get rid of ios7's new dot matrix/monochrome monitor look?

    I can't believe what a giant step back apple took with this upgrade.  Was anyone complaining about the rich color,texture and depth of ios6. There's no need for retnia display because all the apps from apple now look like they were designed using a d