"ORA-20171 WM error: Insufficient privileges" using mergeTable

Hi,
I deleted 1 row on a table in a workspace and committed. Now when I do mergeTable for that row I get the following error:
ORA-20171 WM error: Insufficient privileges
ORA-06512 at “WMSYS.LT”, line 7203
ORA-06512 as line 7
DBMS_WM.mergetable(WORKSPACE => ‘xxxx’,TABLE_ID =>’yyyy’,WHERE_CLAUSE => 'PK_COLUMN = id',REMOVE_DATA => FALSE,AUTO_COMMIT => FALSE);
The user that i'm using to log in the db has all the available privilieges for all workspaces: XXX_ANY_WORKSPACE; and he is the owner of the refered table.
Can you help me?
Thanks in advance.
Best regards,
Pedro Lourenço

Hi,
We are using version 10.2.0.4.3 of OWM.
The call stack you asked for:
----- PL/SQL Call Stack -----
object line object
handle number name
0x1c37310b8 342 package body WMSYS.WM_ERROR
0x1c37310b8 359 package body WMSYS.WM_ERROR
0x1c37787d8 8643 package body WMSYS.LTUTIL
0x1c36e6ef8 17 package body WMSYS.OWM_ASSERT_PKG
0x1c450d8c8 5057 package body WMSYS.LTADM
0x1c450d8c8 6999 package body WMSYS.LTADM
0x1c450d8c8 7158 package body WMSYS.LTADM
0x1c450d8c8 9094 package body WMSYS.LTADM
0x1c48f5910 2743 package body WMSYS.LT
0x1c48f5910 2467 package body WMSYS.LT
0x1c48f5910 2409 package body WMSYS.LT
0x1c48f5910 7191 package body WMSYS.LT
0x1a9d70c70 7 anonymous block
----- Call Stack Trace -----
Any idea? Thanks.
Regards,
Pedro Lourenço

Similar Messages

  • ORA-20171: WM error: Trigger Names cannot exceed 27 characters

    Hi All,
    while executing the following script :
    "EXEC DBMS_WM.EnableVersioning ('clasec_menu_role_map', 'VIEW_WO_OVERWRITE');"
    i encountered following errors.
    ORA-20171: WM error: Trigger Names cannot exceed 27 characters
    ORA-06512: at "SYS.LTDDL", line 457
    ORA-06512: at "SYS.LTDDL", line 1123
    ORA-06512: at "SYS.LTDDL", line 1107
    ORA-06512: at "SYS.LT", line 9024
    i am working on oracle 10g, please help me out of this problem.
    Vikas

    i have changed the trigger name but now error is diffrent.
    SQL> EXEC DBMS_WM.EnableVersioning ('clasec_menu_role_map', 'VIEW_WO_OVERWRITE');
    BEGIN DBMS_WM.EnableVersioning ('clasec_menu_role_map', 'VIEW_WO_OVERWRITE'); END;
    ERROR at line 1:
    ORA-20230: table 'CLASSICSECURITY.CLASEC_MENU_ROLE_MAP' failed during
    UndoEnableVersioning/DisableVersioning. Error:
    ORA-01403: no data found
    ORA-01403: no data found
    ORA-06512: at "SYS.LTDDL", line 457
    ORA-06512: at "SYS.LTDDL", line 1123
    ORA-06512: at "SYS.LTDDL", line 1107
    ORA-06512: at "SYS.LT", line 9024
    ORA-06512: at line 1
    vikas

  • ERROR: insufficient privileges while using EXPLAIN PLAN command

    Hi,
    I have a table named TEST and i ran following command on this table.
    SQL> EXPLAIN PLAN FOR
    2 SELECT NAME FROM TEST;
    SELECT NAME FROM TEST
    ERROR at line 2:
    ORA-01031: insufficient privileges
    So which privilege do i need to give for using EXPLAIN PLAN command.
    Thank.

    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14211/ex_plan.htm#i19260
    SQL> @C:\oracle\product\10.2.0\db_1\RDBMS\ADMIN\utlxplan.sql
    Table created.
    SQL> select table_name from user_tables where table_name='PLAN_TABLE';
    TABLE_NAME
    PLAN_TABLE
    You might consider checking dba_tables to check the owner in your case and may be you don't privilege on that table.

  • Apps Login Page Error- Insufficient privileges for the current operation

    Hi Gurus,
    We migrated application node from HP-UNIX to SUN Solaris with 11.5.10.2 and 10.2.04 database. When i try to login as sysadmin, got the error You have insufficient privileges for the current operation.
    But i can able to go in with Forms URL and it works. I don't see any errors on IAS except
    Fatal error in parsing device registration file in jserv.log.
    Any help is appreciated.
    Thank You.

    I found 150 invalid objects in the database. Also i have question here my database and the application is on different domains.Where do you have those invalid objects? Under what schema?
    Using different domain names should be OK.
    Do you think that will work. If the application and database put it in the same domain( put the apps in same database domain), by running the autoconfig will update the domain name in application server globally.I cannot assure if it is going to work or not.
    Have you checked Apache log files?
    If not change the domain name globally what else need to be done to change it. Please suggest on that.These are the docs you need to access if you want to change the domain name.
    How to change the hostname of an Applications Tier using AutoConfig [ID 341322.1]
    How to change the hostname and/or port of the Database Tier using AutoConfig [ID 338003.1]
    Steps To Clean Nonexistent Nodes or IP Addresses From FND_NODES [ID 260887.1]
    Thanks,
    Hussein

  • Insufficient privileges using execute immediate in after logon trigger

    I have an after logon trigger that executes a package/procedure in the schema it was created in.
    One of the procedures runs the following:
    EXECUTE IMMEDIATE 'AUDIT INSERT TABLE, UPDATE TABLE, DELETE TABLE, EXECUTE PROCEDURE BY ' || USER;
    The procedure is throwing an insufficient privileges error when executing this.
    However - the schema owner has audit any and audit system privileges and - the statement works fine independently.
    When I login as another user this issue arises. The package/procedure are created with definers rights... So - i'm not sure why this is happenening.
    Any help is appreciated.

    privileges acquired via ROLE do NOT apply within named PL/SQL procedures.
    SQL> SET ROLE NONE
    SQL> --issue AUDIT again now                                                                                                                                                                                                                                                               

  • ORA-00600: internal error code while using UpdateXML to update xml content

    Hi,
    I have been using the UpdateXML command to replace content of xml stored in XMLType. It was working absolutely fine.
    Below is the query:
    UPDATE temp d SET d.message_content = updateXML(d.message_content,'//*[.="Test" ]/text()','"Test123"') WHERE                          existsNode(d.message_content,'//*[.="Test"]')=1";
    But now i'm getting an exception as follows:
    ORA-00600: internal error code, arguments: [qmcxeUpdateXml:2.1], [], [], [], [], [], [], []
    The table uses a Free Test Index.
    I searched the forum and found from the given link https://forums.oracle.com/forums/thread.jspa?threadID=2352772 that corrupted Index may be the cause of this problem. I'm still clueless :(
    Can someone help me?

    Hi sprightee,
    That thread you found seems to be a different problem (Ora-600 argument is different)
    I think you have hit bug 6811908, at least if Odie is correct about your version.
    Bug says No workaround - Fixed in 11.1.0.8
    Regards
    Peter

  • ORA-00600: internal error code while using packages

    ORA-00600: internal error code, arguments: [kkxpityp1], [ ] , [ ] , [ ] , [ ] , [ ] , [ ]
    I am trying to use a select * from table(IBLCOMAN04.shortage.getIblTbl) where
    IBLCOMAN04: is the schema name
    shortage: is the package name
    getIblTbl is a table function.
    The resultset obtained from select * from table(IBLCOMAN04.shortage.getIblTbl) is used to print a report.
    we are using a pipeline function in getIblTbl to generate this report. but it is failing with the following error.
    Any workaround or solutions to this???

    Hi,
    Please try looking into this link, it has some information on the error you are getting.
    ORA-00600
    Thanks

  • Second Hard Drive & Insufficient Privileges

    Hey everybody...
    I installed a second hard drive in my lower drive bay and am now trying to erase it (in order to format it for use). It shows up in Disk Utility, but when I try to erase it (with Mac OS Extended (Journaled), and after I enter my admin password, I get the following error message:
    Disk erase failed with the error: insufficient privileges.
    I have verified permissions on my first drive, which I am booted up on. I've also tried booting up from the Tiger DVD and running Disk Utility from there, and I get the same error.
    The new drive is a Maxtor 250gb DiamondMax, and I can find no instance online of anyone having problems with this drive on a Mac.
    Otherwise, here are the system basics:
    PowerMac G5
    Dual 2ghz
    2GB RAM
    Thanks for any help you might have!
    PowerMac G5 Mac OS X (10.4.8)

    Thanks yet again.
    Interesting stuff, but since the new Maxtor is not yet recognized as a volume (outside of Disk Utility), those terminal commands didn't work. It kept returning the error that there was no such volume. I tried every different spelling (with/without spaces, underscores, caps) that I could think of of what appears in Disk Utility as "Maxtor SABRE."
    Just to be clear - the only place I see any reference to the new drive is in Disk Utility. It's not on the Desktop or in Finder, and I couldn't find any reference to it in the Terminal.
    And I also just noticed that the drive capacity is listed at 0 bytes in Disk Utility.
    Perhaps this is simply a bad drive?
    I also have a question in to the support site at Maxtor, and when I hear back from them, I'll post what they say.

  • Insufficient privileges in Foreing Key

    I created a table in user2 schema (Oracle 8.1.5)
    Create table test (company number(2));
    Then i try to add a foreing key
    ALTER TABLE test
    ADD ( FOREIGN KEY (company)
    REFERENCES otheruser.COMPANY);
    I always get the ORA-01031 error (insufficient privileges)
    user2 is DBA and otheruser too. I tried all the grant options...
    Can anyone give me a detail script...
    Thanks.
    Antonio

    I think you are not having alter any table privilege, Any how
    here is the syntax:
    Alter table test add constraint fk_test foreign key(company)
    references otheruser.table_name(col_name);
    Regards,
    G. Rajakumar.

  • Insufficient Privilegies. "Access Home Page"

    Hi,
    We have currently an issue with BI. Users can logon using the Single Sign On page to Oracle E-Business Suite.
    Then they logon using a responsibility link to BI. After 30min to 1H, the user is timing out and can't logon again.
    The user is receiving the error:
    Insufficient Privilegies. "Access Home Page"
    If we restart the server, all the users can logon again normally without any issue and it could stay like that for hours.
    This is really an inconsistent issue as it's happening randomly. In EM, I can see some message like:
    User XXXXX logged in
    User XXXXX logged out
    The GUID for user XXXXX has changed. This could result in a catalog access issues. Please Update GUIDs and try again.
    Insufficient Privilegies. "Access Home Page"
    We already refreshed the GUID. Restarted the server. Not sure how to solve this random issue.

    >E-Business Suite Expire is set to 30 minutes
    If it is related to idle time! I guess you are good.
    Btw: how about ConnectionExpireMinutes?
    Message was edited by: SriniVEERAVALLI

  • How to resolve insufficient privilege

    Hi,
    When i run the following the command, am getting error insufficient privilege.
    create view v1 as (select * from v$statname)
    ERROR at line 1:
    ORA-01031: insufficient privileges
             but i can execute select statement alone like
    select * from v$statnameWhat & where is the problem to create the view on that view;

    You require a direct select privilege (i.e. not via a role) on SYS.V_$STATNAME, to do that.

  • Shutdown insufficient privilege

    HI i have oracle 9i with window xp professional, i want to take DB backup
    I connected with scott/tiger when i give shutdown command it gives me error
    insufficient privileges
    and when i connect system/manager even it shows the same error
    pls write me how can i give privilegs to scott/tiger

    yogesh i don't understand why you say this.
    >> 1) You can take hot backups, which are little painfull, but you can get your data in original form. You can use use tools like RMAN for this.
    Why do you call hot backup as painful ? RMAN has wonderful features which makes life pretty easy allowing you to make a consistent backup of your system with zero downtime.
    >> 2) If you go for cold backups then, whihc is the easiest approach, but are always at risk of loosing the current data, which is not backedup. For this you need to write batch/shell script wihc will take DB down copy files and start it again.
    why do you feel you will loose data. Actually in a cold backup, you don't loose any data at anytime. You shutdown the database neatly, backup your files bring it up again. There is no transaction happening then. Only thing is it results in downtime and your strategy of coldbackups depends on the service level agreements you have with your customer on downtimes.
    Now coming back to the actual question of how to backup.
    Go for RMAN hotbackups, since your db is too small, you can go for full backup everyday.
    Also once a week, you can do full logical export of the database.

  • Insufficient privileges wwv-10600

    I have a Omniportel using SQL and my query is:
    select PORTAL.wwv_user_utilities.get_intermedia ('emt.fotografiacentro_t','FOTOGRAFIA' ,'IMAGE',b.ROWID,'Y',135,100) FOTOGRAFIA
    from emt.fotografiacentro_t b
    My problem is:
    when from another computer I enter the portal Web imagenes do not visualize,
    error: insufficient privileges wwv-10600
    somebody can help me, thank you very much

    Hi
    How come the user I created is not in the dba_users table? I want to add the user in a role and is unable to do so. I think the insufficient privileges could be due to the packages which I have used. So how to add a database user??

  • Insufficient privileges while creating EUL

    Hi All,
    I am trying to create a new EUL in Discoverer 9.0.4. Option "Select an existing user" is selected and "Grant access to Public" is unchecked.
    I am connected as user A. The tables are in schema for user B. So I selected the user B and entered the password. When I click "Finish", I get the following error:
    Insufficient privileges to create a new user or grant the necessary privileges to an existing user. You must have CREATE USER, ALTER USER and GRANT ANY PRIVILEGE privileges.
    Now user A does have privileges to create role, view, table, session, sequence, procedure. User B too has these privileges plus a few more.
    Can somebody help me with what privileges am I lacking? For which user, A or B?
    Thanks.

    If you want to create an EUL the user you select (B in your case) must be the following privilegies:
    CREATE SESSION
    CREATE USER
    GRANT ANY PRIVILEGE
    ALTER USER
    It doesn't matter the user you are connected in Discoverer.
    Hope this helps.

  • Insufficient privilege when Activating an attribute view (person responsible for package = SYSTEM)

    Insufficient privilege when Activating an attribute view (person responsible for package = SYSTEM)
    SAP HANA Studio
    Version: 1.0.33
    Build id: 201206301604 (363996)
    Playing with the efashion tutorial with HANA Studio.
    I am SYSTEM user by default when starting the studio.
    -Schema created
    -DDL created
    -Data loaded
    -Attribute views created
    Below an extract of the error log:
    <info>Create Attribute View failed: SQL: transaction rolled back by an internal error: insufficient privilege: Not authorized

    Hello Anooj and Sri,
    Thank you for your answers, I really appreciate your inputs.
    So I executed this:
    "GRANT SELECT ON SCHEMA SYSTEM TO _SYS_REPO WITH GRANT OPTION;"
    Under the Studio SQL GUI and I still have the same error when activating my very simple attribute view.
    I have installed a recent HANA + Studio + Client release on my laptop:
      SAP HANA Studio
    Version: 1.0.33
    Build id: 201207050531 (364183)
    And yes, this is a demo and yes I am logged as the SYSTEM user (default user when stating the studio). For now, I dont know how to connect to another user with the studio and I will search the doumentation.
    Below a copy/past of the error msg.
    Internal deployment of object failed;Repository: Encountered an error in repository runtime extension;Internal Error:Deploy Attribute View: SQL: transaction rolled back by an internal error: insufficient privilege: Not authorized (ptime/query/plan_executor/ddl/qx_cube.cc:1514) n
    Create view DDL statement: CREATE COLUMN VIEW "_SYS_BIC"."efashion/ATV_OUTLET_LOOKUP" TYPE JOIN WITH PARAMETERS ( joinIndex = "EFASHION_TUTORIAL"."OUTLET_LOOKUP", joinIndexType = 0, viewAttribute = ('SHOP_ID', "EFASHION_TUTORIAL"."OUTLET_LOOKUP", "SHOP_ID", '', 'default', 'attribute', '', 'efashion/ATV_OUTLET_LOOKUP$SHOP_ID'), viewAttribute = ('SHOP_NAME', "EFASHION_TUTORIAL"."OUTLET_LOOKUP", "SHOP_NAME", '', 'default', 'attribute', '', 'efashion/ATV_OUTLET_LOOKUP$SHOP_NAME'), viewAttribute = ('MANAGER', "EFASHION_TUTORIAL"."OUTLET_LOOKUP", "MANAGER", '', 'default', 'attribute', '', 'efashion/ATV_OUTLET_LOOKUP$MANAGER'), viewAttribute = ('ZIP_CODE', "EFASHION_TUTORIAL"."OUTLET_LOOKUP", "ZIP_CODE", '', 'default', 'attribute', '', 'efashion/ATV_OUTLET_LOOKUP$ZIP_CODE'), viewAttribute = ('CITY', "EFASHION_TUTORIAL"."OUTLET_LOOKUP", "CITY", '', 'default', 'attribute', '', 'efashion/ATV_OUTLET_LOOKUP$CITY'), view = ('V_OUTLET_LOOKUP', "EFASHION_TUTORIAL"."OUTLET_LOOKUP"), defaultView = 'V_OUTLET_LOOKUP', 'REGISTERVIEWFORAPCHECK' = '1' )nVersion: 48n
    Thank you.
    Patrick

Maybe you are looking for

  • Error message on iTunes when trying to open iTunes Home page?

    I'm not trying to find a song or anything, I just want to get onto the iTunes store home screen but this comes up??

  • How to sort video by file name in Event Library?

    How to sort? so that I many all clips sorted by name and can drag them all to my project to create quick movie that has correct date and time sequence, as the file name. Thanks!

  • Knowledge of Graphics and Macbook Air

    What I need: 32 MB DirectX 9 compatible video card or better. The Air has: Intel GMA X3100 graphics processor with 144MB of DDR2 SDRAM shared with main memory Is this enough?

  • Creative zen microphoto 4GB big prob

    Since a week or so, when i open the player by moving and holding the power button to on position, the only thing appear is the splash screen of creative logo and copyright 2005 and it stays there until I remove the battery, cause when I tried to clos

  • DW Template not updating live pages.

    When i change the naviagtion bar on my template page, DW updates all the local pages without problem. Now when i change and upload (just) the template file it does not change the pages on the remote site, it did used too though ! From what I have rea