Granting the privileges to the Other User

Hi,
I am Using Oracle 10g. My Question is, I am Selecting the table from party from SYSTEM as the user and SYSADM is the Password. It is populating the Record. And when Select the table Party in SYSADM as the user and SYSADM as the password it is giving no rows message. I tryed to give the Privileges to the SYSADM but it is not taking
Can anyone give the process to give privileges to the another user to ( Means SYSTEM user table to SYSADM user tables )
Can anyone give suggestion...!
Thank u..!

hi,
i am using Oracle 10g. Previously i asked the question there is no reply.
So i tryed this commands but no effect please can anyone tell me any suggestions
Here SYSTEM is User, SYSADM is PASSWORD, TEST is Database
connected as SYSTEM/SYSADM@TEST
SQL> GRANT INSERT, DELETE, UPDATE, SELECT ON ' || table_name || ' TO SYSADM; Here SYSADM is Another USER Name
Grant succeeded.
Like this i am getting. Any mistake i made when writing this Statement, Otherwise why this is not granting Privileges to other USER SYSADM
Pls. Tell me any Suggestions..!
Thank u..!

Similar Messages

  • Using the Import utility from other users and going to a different schema

    I has a user today with rights
    Insert into XXXX.TABLE values(); Works just fine for another schema's table which has select,insert,update,delete.
    We tried to utiile the import utility from OTHER USERS
    Insert failed ORA-00942
    Do you want ot ignore all errors
    Even though we have rights to the schema under OTHER USERS.
    When connected as the owner it works fine.

    I've be trying to find a work-around to this issue & found this old post -- I'm having the same problem.
    I'm using Oracle 11g and SD 2.1.1.64.
    I have user A with a table that grants select,insert,update, and delete privs to user B. Logging into user B I, of course, can do inserts, deletes, etc. on the the table in user A's schema.
    When I use the import data feature to load data from a CSV file I can't get it to work while logged into user B. It does work fine if logged into user A. It looks like the issue may be that it doesn't put the schema prefix of "A." on the insert statements.
    Has anyone found a way to get around this issue yet?

  • How to view the output submitted by other user

    Product : EBS R12.0.4
    Plateform : RHEL AS 4.6
    I want to view the output submitted by other users. I have tested it for responsiblity level in which sysadmin can view the other users request but it is labour work. Can anyone suggest to view it with less work.
    Regards,

    Hi,
    you need to understand the new RBAC concept and the involved objects. Just to mention that Grants are here specific EBS-RBAC objects you have to deal with. You need to be sysadmin and functional Administrator to define and assign those objects. I know that the metalink note is short and could be longer, but all steps are right.
    If you ask mainly what you are doing by utilizing this notes, you are defining additional where clauses, internally added to the basic object (here concurrent requests) and additionally you are granting rights to get buttons enabled (log / out).
    If you need something else, just let me know.
    Regards
    Volker

  • HT201250 Will the automatic backups backup the entire disk (even other user accounts), when I'm not logged into those accounts?

    Will the automatic backups backup the entire disk (even other user accounts), when I'm not logged into those accounts?
    I want to be assured that my back up is working completely.    What if my MacBookPro auto-logs off my account during the backup due to no activity?   Or, is the backup considered activity and it won't log off?
    What about  the Energy saving options - will they affect the backup ?

    FOTO123456 wrote:
    Will the automatic backups backup the entire disk (even other user accounts), when I'm not logged into those accounts?
    Assuming you mean via Time Machine, yup.    It backs up your entire system, including all user accounts (unless you specifically exclude things).
    What if my MacBookPro auto-logs off my account during the backup due to no activity?   Or, is the backup considered activity and it won't log off?
    I've never tried it, but the backups run as the "root" user, so will probably continue.  If they don't, it's not a problem, as the next backup will "catch up" with all changes.
    What about  the Energy saving options - will they affect the backup ?
    Not really.  If you have the Mac set to shut down at a particular time, that will of course interrupt a backup if one is running.  But again, the next backup will catch up.

  • Cannot lock the page to prevent other users from editing it. Please try again later. Error with ASP pages

    Cannot lock the page to prevent other users from editing it.
    Please try again later.
    I get t his error when I try to edit ASP pages on my web
    server, I have all admin rights, anyone know a fix for this?

    App Store support. There is troubleshooting and a contact link.
    Support

  • Lock the plant so that other user cannot use the same plant.

    Hi Gurus!
    I ahve this small report which shows the pro-rate factor . In this report I need to block the plant or lock it(a soft) lock witha  message that some other user is using the plant so that other cannot use the same plant to post.Following is the report and if soemone can help me out would be very kind enough.I ahve added teh code where validation of plant is doen , so it must be somewhere here the locking should be done as per my thinking . Kindly suggest please.
    *&      Form  get_pro_factor
    *       get pro rate factor from the given
    *       combination of plant/sloc/mat#/period
    form get_pro_factor .
      select single zpr_factor zpr_disp_factor zpr_pipe_net zpr_pipe_gross
      from zprfactor
      into (zprfactor-zpr_factor, zprfactor-zpr_disp_factor,
            zprfactor-zpr_pipe_net, zprfactor-zpr_pipe_gross)
      where zpr_werks = p_werks    and
            zpr_lgort = p_lgort    and
            zpr_matnr = p_matnr    and
            zpr_mjahr = p_mjahr    and
            zpr_monat = p_monat.
      v_subrc = sy-subrc.
      if zprfactor-zpr_factor = 0.
        if c_wp = p_lgort+0(2).
          zprfactor-zpr_factor = 1. " Don C added this routine
        endif.
      endif.
      if zprfactor-zpr_disp_factor is initial.
        if not zprfactor-zpr_pipe_gross is initial.
          zprfactor-zpr_disp_factor = zprfactor-zpr_pipe_net / zprfactor-zpr_pipe_gross.
        endif.
        if zprfactor-zpr_disp_factor is initial.
          zprfactor-zpr_disp_factor = 1.
        endif.
      endif.
    endform.                    " get_pro_factor
    *&      Form  valid_plant
    *       validate whether plant entered in selection screen
    *       exists in database or not
    form valid_plant .
      if not ( p_werks is initial and
                 p_lgort is initial and
                 p_matnr is initial and
                 p_mjahr is initial and
                 p_monat is initial ).
        select single werks from t001w into t001w-werks
               where werks = p_werks.
        if sy-subrc ne 0.
          message e048(zmm) with p_werks.
        endif.
      endif.
    endform.                    " valid_plant
    *&      Form  FIND_MATKL
    form find_matkl .
      select single matkl into v_matkl from mara where matnr = p_matnr.
    endform.                    " FIND_MATKL
    *&      Form  UPDATE_ZPRFACTOR
    form update_zprfactor using p_flag.                         "DEVK903224
      call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      else.
        select single * from zprfactor where zpr_werks = p_werks
                                       and   zpr_lgort = p_lgort
                                       and   zpr_matnr = p_matnr
                                       and   zpr_monat = p_monat
                                       and   zpr_mjahr = p_mjahr.
        if sy-subrc = 0.
          zprfactor-zpr_rate_flag = p_flag.                     "DEVK903224
          update zprfactor.
        endif.
      endif.
      call function 'DEQUEUE_E_TABLEE'
        exporting
          mode_rstable = c_e
          tabname      = 'ZPRFACTOR'.
    Thanks
    Aarav

    call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
    ENQUEUE_E_TABLEE   } E_TABLEE is the name of the lock object, it starts with character "E".

  • User should not be voiding the dispute created by other User

    Hi,
    I having an Issue at my work place.I have got a Requirement from the Finance Functional Folks that the user should be able to create the dispute case and also void the case created by him.But the user should not be able to void the dispute case created by the Other user.
                                           As of now when I am testing the user is able to void the dispute case created by him and also void the dispute case created by other user.So now I am trying to restrict so that user should not be able to void the dispute case created by other user.
    In the Roles Built at work place I have fdm_coll01-collections Management and also udm_dispute-dispute manamgement T-codes built in One Role.can any one of you let me know at which authorization object this can be restricted as I am having a hard time trying to find out.
    In Ideal SAP World what my idea was a Dispute case created by the user in Production should not be allowed to void the dispute case.so creating a dispute case and voiding a dispute case should be treated differently and should be done by different persons in an organization.

    In Ideal SAP World what my idea was a Dispute case created by the user in Production should not be allowed to void the dispute case.so creating a dispute case and voiding a dispute case should be treated differently and should be done by different persons in an organization.
    So why not talk back to your FI Folks. Also check with your Compliance Team.
    But anyhow, I do not see in the real world a conflict of duties by giving access to both creating a Dispute and voiding a dispute and more over voiding a dispute is considered critical since it would allow to Release Blocked Orders.
    But the user should not be able to void the dispute case created by the Other user.
    If every transcation and conversation with a Customer is recorded in the Collections Management system, I do not see a requirement for the same Team Member having access to close a dispute created by other user. 
    AB.

  • Do I need to set my apple id in preferences if I am the administrator and no other users

    Hi I do not want any shared access on my computer. New Mac registered with apple id/password for my mac. When I go into System Preferences under users my name if there along with apple id SET?  If I set this with my own won't that mean there is another user? I know it would be me, but the system would recognize as a shared account. Do not want that. Also do I have to set a master password, since I am the only one authorized I thought that was a little redundent.  Please help with all of your expertise (I am only assuming but hoping as well) Ha!

    All content is tied to the account that buys/downloads it and it can't be transferred to a different account, so if you create a new account all of your existing downloads will remain tied to your existing account. If you don't have access to that email address anymore then you should be able to login here and update your account to have a new email address : https://appleid.apple.com/

  • How to trace the changes made by other user in portal

    Hi All,
    Actually i have a requirement like, some body has done some changes in Development server how to trace those chnages in portals or Visual Admin (who is the user and what are all the objects that got changed) .
    Actually our development system , Quality and Production systems are working fine till yesterday but when we logon to the dev, qua, prd systems today there are some changes and some of the things are not working client was asking us whether we have done some canges if not who has done the changes.
    Is there any place where all these changes can be recorded (likes who is the user and changes ....) or traced like log files or any thing else
    Can any one help me out in this regard.
    Thanks & Regards,
    Ramesh.

    Hi ,
    As you told some changes identified. so navigate to corresponnding portal obejcts and find modified and last changed by similar properties in the property editor object.
    portal activity reports gives how many users visted specific pcd object but not who visited. You can use pcd filter to compare properties.
    Regards,
    Koti Reddy

  • How can I lock access to Firefox so that only I can fo on the internet and not other users of my computer?

    I have a computer which I let several other people use, but I don't want them to have access to the internet. I would like to see if there is a "lock" choice so that no one else can access the internet - or another means? I've tried to select "Lock" to the whole computer (when it gives you the "lock," "shut down," "sleep," etc. choices - and it says the computer is locked but the next time I try it it opens the computer (and internet) just like it never was "locked" so I don't even know how to effectively lock the whole computer either as a second option to block access ot the internet!

    I had the same problem (issue with Google Apps and XUL runner etc) of needing to downgrade. To pull it off I went to the main Firefox download page (http://www.mozilla.com/en-US/firefox/new/) and followed the link to OTHER SYSTEMS AND LANGUAGES which took me to a page that included a link on the right hand side to download Firefox 3.6.16.
    (The stuff below pertains to Windows. If you are on a different OS your steps will vary)
    To do the actual downgrade (and there may be some other steps that would be wise to take but this is what worked for me) I merely renamed "c:\Program Files\Mozilla Firefox" to "c:\Program Files\Mozilla Firefox bad" (in case I want to try troubleshooting the issue later) and then ran the "Firefox Setup 3.6.16.exe" file that downloaded from that link. That solved my problem and I'm back and running 3.6.16.
    In case you don't feel comfortable changing things in your Program Files directory you might try a different approach and try uninstalling via the Control Panel and Add and Remove Programs (or whatever it is called on the version of Windows you are on) and then running the installation file. I didn't go that route so I can't tell you how well that might work.

  • Grant connect allows viewing of other users

    Situation:
    In SQL*Plus: Create a user, grant connect to the user. Connect as the new user and try to query dba_users. ORA-00942 error occurs (which is good).
    In Raptor, connect as the new user. Expand the users tree and now you, the new user, can see every user in the database (among other data dictionary items). That's not good, right? This occurs in the latest release (0919).

    Do you suggest that through raptor you can get access to dba objects with only connect granted? Impossible :) Try this in raptor and sql+
    select * from all_users;
    select * from dba_users;

  • Who knows what Can I do to modify the privileges on alloc users in order to it cannot delete the allocations created?

    Hi everybody.
    I need to know how I can check the privilege that an alloc user has to delete, modify or insert an allocation.
    I don´t know what are the security tables associated to the application user.
    I'll appreciate a lot the help that everybody can provide me.
    Regards,
    Jean

    KAS184 wrote:
    I have the new iPad so I can't shut it off with the Sleep/Wake button which it doesn't have.
    Ah ... yes ..... it does have a power button. Every iPad has the same sleep/power button in the same place on the iPad. I'm happy that you found a solution .... but maybe you should download this for reference.
    http://manuals.info.apple.com/en/ipad_user_guide.pdf

  • How to disable other users from changing the status

    Hi,
    The status entry field can be changed irrespective of ownership in Documents.
    I was able to change the status on the document created by other user.
    Example: The status of document was In-Work. The document owner was X. But I was able to change it to Inspection Check.
    How to disable other users from changing the status?
    Regards,
    Shashi

    This is a frequently discussed topic.Please use the search feature.It has been discussed in [previous posts|CV01N: Filter documents by role; in various contexts.
    Regards,
    Pradeepkumar Haragoldavar

  • Granting table privileges on another users tables

    Can anyone tell me what privilege needs to be granted to a user to be able to grant insert/update/select/delete/execute on another users tables/packages?
    I had thought that 'grant any privilege' was the one to have... and - the user I am trying to use to grant the privileges on the other users schema has this however - I'm still getting : ORA-01031: insufficient privileges when trying to run the grants.
    Any ideas what I'm doing wrong here?

    Ok... well...
    The 'with grant' option doesn't appear to be the issue.
    The user attempting to perform the grants:
    i.e. GRANT SELECT ON user_2.table_1 TO view_role
    has the 'grant any object privilege' and - that seems to be enough. When I run the statement above as a simply as typed - it works fine.
    However - what I'm actually doing is concatenating that together in a string and running (from a package created by/as user_1) and doing an execute immediate...
    i.e.
    l_sql := 'GRANT ' || l_rec.privilege || ' ON ' || l_rec.owner || '.' || l_rec.table_name || ' TO ' || p_role;
    EXECUTE IMMEDIATE l_sql;
    And - it's this that's giving me the insufficient privileges...
    I do not have invokers rights set on the package - so that shouldn't be an issue. And - I can't find any documented restriction on doing this (and - in fact - it works fine if I create the package as user_2 and run it as user_2 - the owner of the objects).
    I'm at a loss.

  • Script to Temporary Elevate the admin rights to local user

    Hi Friends
    i believe this topic was already discussed , however i could not find a solution ..  please help
    i need a script ( vb/power shell/bat ) etc which will run on local user with admin privilege ( will package and make it available in application store / software center ( sccm 2012 ) , it will run with admin rights on local computer ) and grant admin privilege
    to the local user for 24 hours
    My previous org had same, however the source is a .exe file, so not very sure if they have converted script to exe for privacy
    Thank you
    Tanoj
    OSLM ENGINEER - SCCM 2007 & 2012

    Hi,
    Adds/Delets a global group name or user name to a local group.
    net localgroup [GroupName name [ ...] {/add |
    /delete} [/domain]]
    Reference:
    Net localgroup
    http://technet.microsoft.com/en-us/library/bb490706.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • Error in Data transfer ECC to APO

    Hello Guys, I'm getting an error in my system when I try to transfer data from ECC to APO system. When I CIF (after generating IM, when I activate it)  older data (master data created previously in system), I'm getting a short dump with mesage class

  • How can I purge and delete OFFILES FOLDER

    Hi , I have groupwise 7.0 version. and I have 1 volume with 100 GB used... and the OFFILES Folder takes most of the space, how can I reduce this folder and not affect the mail system.. I will waiting for your comments.. Regards.. Roberto Tamez

  • Iphone 5 to tv usb

    I have just purchased my new I phone 5S and want to buy the right cable or adapter to connect it to my TV. My television has both USB and HDMi ports but looking online if I buy the apple lightning adapter (£40) and a HDMi cable it works out quite exp

  • Functional location not reflected in connection object

    HI... I created a functional location in the plant maintanence module..however when i try to check this from the connection object SAP gives me an error sayin the Location does not belon to IS type C(connection Object). during FL creation i had speci

  • DAO and MVC

    Hello! I am using the MVC pattern in my project. Should i put my DAOs in the model package or should i create a separate package for the DAOs? And in that case, what should i call it? What is the most common solution?