Insert,update, del not working while assigned to users through role

Dears,
I created a role ABC
Assigned select insert update and delete privileges to role ABC on a table MY_SEC_TABLE
Later I assigned this role to a user TEST
Connected to database with this user TEST
and
Try to edit any row in table MY_SEC_TABLE but receive ORA-01031: insufficient privileges
Edited by: FarhatKayani on Mar 17, 2013 11:03 PM

Hi,
OK,
Try to edit any row in table MY_SEC_TABLE but receive ORA-01031: insufficient privilegesCould you select MY_SEC_TABLE by this user??
Regards,

Similar Messages

  • Insert , Update & Delete Not working in BDB Berkley Database

    Hi,
    Anybody has used Oracle ADF & BDB ,to insert/ update & delete?
    imported db.jar,dbexample.jar,sqlite.jar ,derby.jar. still not working (Only Query working)
    Pls lets us know

    Hi,
    Do you have a small test case program that demonstrates this? A JDeveloper project showing what exactly is the problem when trying to use the BDB SQL JDBC driver to insert data into the BDB SQL database? What do you mean by "not working", do you get any errors, you do not get errors but you do not see the data in the database etc?
    What are the versions of Java, JDeveloper, ADF and BDB SQL you are using, and on what OS?
    Regards,
    Andrei

  • Multi-Row insert/update/delete not working via db-link

    App. Version: 2.0.0.00.49
    DB: Oracle 9i, not sure about the build
    Problem: Multirow Update/Insert/Delete doesn't work via db-link.
    Error received: ....ORA-1460: unimplemented or unreasonable conversion requested....
    Where: Tabular Form generated via Wizard
    Side note: It's working properly when local table(s) is/are used, it's not working via db-link or view.
    I've encountered this error with single update/insert/delete operations before, but was able to fix it via using temp-variables (v_xyz := :Px_xyz; as the proposed v('Px_xyz') was really slow with my scripts)...but with the automated DML-action I don't see a way to edit it accordingly.
    Workaround found:
    1a) Use local* collection on HTML-DB-Server, then write single row updates/deletes/inserts to the remote DB via DB-Link
    1b) Use local* table on HTML-DB-Server, then write single row updates/deletes/inserts to the remote DB via DB-Link
    * Local = on the same server that HTML-DB is running on...
    So,...to my questions:
    1. Can someone confirm that this is a "known feature" (aka bug)?
    2. Can someone tell me if this "known feature" has been eliminated in the newer version of HTML-DB/APEX (> 2.0.0.00.49)?
    Thanks.
    Ingo

    Hi,
    Do you have a small test case program that demonstrates this? A JDeveloper project showing what exactly is the problem when trying to use the BDB SQL JDBC driver to insert data into the BDB SQL database? What do you mean by "not working", do you get any errors, you do not get errors but you do not see the data in the database etc?
    What are the versions of Java, JDeveloper, ADF and BDB SQL you are using, and on what OS?
    Regards,
    Andrei

  • Insert/Update Stmt not working

    Hello,
    I have created a region that hides and shows based on on javascript. I had to add a new field into this region and now it won't write to the database, it displays correctly on the form. I copied the field from another field and renamed it to p12_joint_service_trng. The field is a radio button that uses a LOV
    It will not write the p12_joint_service_trng to the database and I'm not getting any syntax errors for it. The other code works correctly.
    The page process below:
    -------------INSERT/UPDATE INTO DFCY_CATG_TABLE-----------
    IF :P12_DFCY_SEQNO4 IS NULL and :P12_DFCY_CATG_C IN('1','2','7','6','3') THEN
    INSERT INTO DFCY_CATG (DFCY_SEQNO,DFCY_CATG_C,INFRSTRCTR_NARR,OPFORCE_EMP_NARR,PERS_QTY )
    VALUES(:P12_DFCY_SEQNO,:P12_DFCY_CATG_C,:P12_INFRSTRCTR_NARR,:P12_OPFORCE_EMP_NARR,v_dfcy_pers_qty);
    ELSE
    UPDATE DFCY_CATG
    SET INFRSTRCTR_NARR = :P12_INFRSTRCTR_NARR,
    PERS_QTY = :P12_PERS_QTY,
    OPFORCE_EMP_NARR = :P12_OPFORCE_EMP_NARR
    WHERE DFCY_SEQNO = :P12_DFCY_SEQNO;
    END IF;
    ------------------------INSERT/UPDATE DFCY_CATG_TRNG----------------------------------------
    -------------INSERT/UPDATE INTO DFCY_CATG_TABLE TRAINING-----------
    IF :P12_DFCY_SEQNO4 IS NULL and :P12_DFCY_CATG_C = '4' THEN
    INSERT INTO DFCY_CATG(DFCY_SEQNO, DFCY_CATG_C, JOINT_SERVICE)
    VALUES(:P12_DFCY_SEQNO, :P12_DFCY_CATG_C, :P12_JOINT_SERVICE_TRNG);
    ELSE
    UPDATE DFCY_CATG
    SET JOINT_SERVICE = :P12_JOINT_SERVICE_TRNG
    WHERE DFCY_SEQNO  = :P12_DFCY_SEQNO;
    END IF;
    ---------------INSERT/UPDATE DFCY_CATG_TABLE_POLICY----------------
    IF :P12_DFCY_SEQNO4 IS NULL and :P12_DFCY_CATG_C = '5' THEN
    INSERT INTO DFCY_CATG(DFCY_SEQNO, DFCY_CATG_C, JOINT_SERVICE, POLICY_DOCTRN_NARR)
    VALUES(:P12_DFCY_SEQNO, :P12_DFCY_CATG_C, :P12_JOINT_SERVICE, :P12_POLICY_DOCTRN_NARR);
    ELSE
    UPDATE DFCY_CATG
    SET JOINT_SERVICE = :P12_JOINT_SERVICE,
    POLICY_DOCTRN_NARR = :P12_POLICY_DOCTRN_NARR
    WHERE DFCY_SEQNO = :P12_DFCY_SEQNO;
    END IF;
    Thanks for the help,
    Mary
    Edited by: MaryC on Feb 9, 2010 3:09 PM

    Mary:
    Check the sesion state browser and verify that the page-items referenced in the 'INSERT/UPDATE DFCY_CATG_TRNG---' block you the page-process code have the expected values.
    varad

  • Insert statement is not working for z table.

    Hi experts,
    My insert statement is not working.
    I have used follwing code to update z table .
    INSERT ztable FROM TABLE gt_table.
    here i have checked gt_table and its filled up with all the records properly.
    now the problem is in this table i have 15 fields and it inserts 14  fields of it but
    the last field is never inserted though in gt_table i can see value for last fields also.
    I have added this field in ztable recently . so i also used se14 to adjust table but still i am facing same problem.
    please help me out.
    thanks,
    Neo

    > > Table maintainance will have nothing to do with
    > this
    > > issue.
    >
    > It does sometimes when you are trying to see the
    > values from SM30 instead of SE16. The value may be
    > there, but it may just not seen in SM30 because the
    > table maintenance hasn't registered the addition of
    > new field.
    >
    > Another place to look at is the activation log to see
    > if there are any warnings issued there.
    You shouldn't use SM30 to view table entries. You use this transaction to maintain the table entries. Pure and Simple.

  • Hp split x2 touchscreen not working while un-docking

    hello hp support, i've recently bought a hp split x2 13-110dx. my touchscreen stops working whenever i detach the screen (tablet) from the keyboard (docking station). if i try to safely remove "Docking Station", first nothing happens and then after about 10 seconds all controls (touchscreen and touchpad) othen the keyboard itself stops responding. a reset allways solves this problem but that means that now i allways have to reset after every undocking. also, if the tablet is working fine, and i dock the tablet, again the touckscreen stops responding (again, reset required) i have done a hard (full) shutdown.i have installed all microsoft updates (i am running win8, not 8.1). what to do?sincerely,matan leilien

    Hi  ,
    Thank you for visiting the HP Forums! A great place where you can find solutions for your issues, with help from the community!
    I came across your post about the Notebook, and wanted to assist you! I have looked into your issue about your HP Split x2 Touchscreen and issues with the touchscreen not working while removed from the dock. Here is a document to troubleshoot the TouchScreen. The section you need is the TouchScreen responds inaccurately.
    Here is a link to the HP Support Assistant if you need it. Just download and run the application and it will help with the software and drivers on your system that need updating. Hope this helps. Thanks.

  • Iphone 5c clock does not work while asleep

    done hard reset updated on and off set automatically time but it works while the device is in use

    iphone 5c clock does not work while asleep
    I have to ask how you know... does it show the right time before you go to sleep? When you wake up?

  • Soundtrack Pro, with Logic Studio. app will not work, while Garage Band is present on my iMac?

    Still new to Logic Pro. Got the Soundtrack Pro when i bought the Logic Studio. am i to understand that this app will not work, while Garage Band is present on my iMac?
    if this is true, i'd welcome any suggestions.  do i have to delete GarageBand on current machine which has Logic Pro?
    appreciate any help
    thanks,

    My MacPro w/ OSX 10.6.8 runs GarageBand, SoundtrackPro and Logic 9 (Express) without issues.
    Everything was installed fresh - ie no overwrite OS upgrades and no app version overwrite upgrades.
    Just so we are clear - an UPGRADE would be from OSX 5 to 6 or from Logic 8 to 9 and involves a purchase. UPDATES are those decimal increments - 10.6.7 to 10.6.8  or Logic 9.1.3 to 9.1.6 that are free.
    Sometimes the sequence of installs can make a difference.
    Good luck,
    x

  • Widgets, Safari, Software Update -- All not working since I got Comcast

    My Dashboard, Safari and Software Update have not worked since I got Comcast internet. I'm pretty sure their installer screwed up something, but I don't know how to undo it. Firefox, Adium, Mail and other internet applications all work great.
    I tried to fix the Software Updater problem a while ago and was able to get it to see what is available (by adding swquery.apple.com to the sites that bypass proxy settings), but it still refuses to download anything.
    I can't help but think there's one thing that's causing all this trouble. Any thoughts?

    You can have up to 5 computers authorized at one time with iTunes. There's no reason to deauthorize until you want to go over the limit. You can do this once a year. Do a clean install of the OS on the mac you are selling.
    hpr3

  • Iphone 6 plus fingerprint is not working while charging

    My iphone 6 plus fingerprint scan is not working while charging. Is this normal?
    I tried my iphone 5s and it works just fine even while charging.

    I think I got an answer to my own question
    If you're using generic lightning cable (non-original lighting cable), the fingerprint scan doesn't work while charging.
    I just find it weird as my iphone 5s works even if i'm not using the original lightning cable though.

  • Windows update does not work after using System recovery disk

    I have a Toshiba Satellite c655 with WIndows 7 64 bit Home premium. The hard drive died on it, so I purchased a new hard drive and purchased the appropriate Recovery media from Toshiba. I followed the directions and installed the 3 disks on to the new hard drive. But Windows update does not work I get the following error: Windows update can not currently check for updates, because the service is not running. You may need to restart your PC    No matter what I try, I can not get it to work. And it will not let me install Windows Defender either. Any ideas or help would be appreciated. Thank you in advance for your time on this matter.
    Solved!
    Go to Solution.

    I get errors saying A problem is preventing the troubleshooter from starting.
    That makes two similarities to the following thread. Both Windows Update and Troubleshooters fail to work correctly.
       Trouble with reinstall of Win7 64 on a L505-ES5018
    The fix was to install a new hard disk driver.
       Intel Rapid Storage Technology
    -Jerry

  • Phone not working after OS update, phone not working after OS update

    phone not working after OS update, phone not working after OS update

    I do have a questiion.  I started the most recent iOS update on my iPhone last night and before it was ever completed a message appeared on my screen.  It is a pic of the docking/charging cord with an arrow pointing to an iTunes logo...HELP!!!!!  I have tried holding down the home key and power button several times and the same message continues to appear. 

  • Safari is not working on the Mac. Internet is fine, mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar.

    Safari is not working on the Mac. Internet is fine. mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar only and coloured wheel appears.

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the malfunctioning extension by uninstalling and reinstalling it. That will revert its settings to the defaults.
    If extensions aren't causing the problem, see below.
    Safari 5.0.1 or later: Slow or partial webpage loading, or webpage cannot be found

  • Screen variant not working when assigned to transaction variant in SHd0

    Dear All,
    User requires tax code column for line items in MIRO to be made non-editable. I am using SHD0 transaction for the same. I am able to make the column grey-off by creating screen variant. The program is SAPLMR1M and screen number 6310. When tested individually thru SHD0 the variant is working perfect. But it is not working when assigned to a transaction variant. Any clues on the same would be really helpful.
    Thanks in advance
    Komal

    Hi,
    Try to record again for the whole set of screens instead of doing that for the individual tax screen and only for the tax screen make the required field disable.
    Once done and saved, you can see all the screens variants in the transaction variant.
    Use the Change WITH PROCESSING OPTION.
    Hope this solves your problem
    Regards
    Shiva

  • HT1665 i have an apple IPhone4. I am experiencing certain problem with my iphone4. The problems are as follows a. my ear piece and proximity sensor is not working while making a call. 2. It cannot reproduce sound without earphone but rings if gets any cal

    Hi folks,
    i have an apple IPhone4. I am experiencing certain problem with my iphone4. The problems are as follows a. my ear piece and proximity sensor is not working while making a call. 2. It cannot reproduce sound without earphone but rings normally if gets any call.
    Can any one help me in this regard??

    Try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose data by resetting, but it can cure some glitches after installing new software or apps.

Maybe you are looking for