SWIM5004: Cannot initiate SNMP-set operation

Hi,
i am trying to get the IOS images for 6509, 6504 vss and 4506-E through LMS 3.2.1.
i have configured RO SNMP v3 and i am encountring with the following error:
"""  Importing the image s72033-ipservicesk9_wan-vz.122-33.SXI5.bin from the device sup-bootdisk into the Software Repository.
Image will be copied to rep_sw_8156213553784565916 using TFTP.
Could not import s72033-ipservicesk9_wan-vz.122-33.SXI5.bin from the device.
Error Message:
SWIM1124: Failed to copy the image from Flash due to the reason - SWIM5004: Cannot initiate SNMP-set operation.
The SNMP Write Community String might be wrong.
Check whether the correct SNMP Write Community String is entered in Device and Credential Repository..
Retry the operation. If the problem persists, check the Bug Toolkit application for any known issues on the running image version.
Image Import Operation Failed
Device is unlocked.
Device Import Result : Failed
End Time:Sat Jul 30 10:44:38 GMT+03:00 2011
SWIM0036: Could not add this image to software repository.  """
i successfully imported 3560 switches to the depository but not able for 4500 and 6500 series where all the settings are the same.
Kindly if anyone can help.
Regards,
George

Hi Joel,
First of all i would like to thanks your answer.
The Check Device Credential shows the snmp communities rw was false.
I changed the communities so i clicked to device credentials button on  the Device Credentials Verification Job Details form.
The softver upload is working right now from this device.
Earlier i tried to run the management station to devices function and it was succcessful for SNMP RW!!!!!!!!!!!!!!!!!!!!!!!!!!!
I tried to change the commnities via CS > Device and Credentials > Device Management.
Despit all these the RME fetching was not working.
I do not unterstand what is the different .
Regards

Similar Messages

  • Can't scan a collection using endpoint, "Failed to initiate client side operation."

    i'm trying to do a quick endpoint scan of a collection and get the error, "failed to initiate client side operation."   I click the details button and I get this:
    Not found
    Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryException
    The SMS Provider reported an error.
    Stack Trace:
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.ExecuteMethod(String methodClass, String methodName, Dictionary`2 methodParameters, Boolean traceParameters)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.ExecuteMethod(String methodClass, String methodName, Dictionary`2 methodParameters)
       at Microsoft.ConfigurationManagement.AdminConsole.ClientOperation.Utilities.ExecuteClientOperation(ConnectionManagerBase connectionManager, ClientActionType operationType, String collectionId, String collectionName, List`1 validMachineIds, IResultObject
    selectedMachines)
    System.Management.ManagementException
    Not found
    Stack Trace:
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.ExecuteMethod(String methodClass, String methodName, Dictionary`2 methodParameters, Boolean traceParameters)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.ExecuteMethod(String methodClass, String methodName, Dictionary`2 methodParameters)
       at Microsoft.ConfigurationManagement.AdminConsole.ClientOperation.Utilities.ExecuteClientOperation(ConnectionManagerBase connectionManager, ClientActionType operationType, String collectionId, String collectionName, List`1 validMachineIds, IResultObject
    selectedMachines)
    I have absolutely no idea how to fix it.  I've tried resetting the site, uninstalling and reinstalling the SCCM console from the SP1 media, verifying that WMI is set up correctly, reinstalling the SCCM client on my server, restarting the server... I've
    got nothing.   Does anyone have any suggestions?

    What version is the client running? Do you also have Cu1 installed, if so, did you also upgrade the clients?
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • AdHoc Set Query - set operations - practical use

    Hi
    I am writing a user manual about AdHoc Query - including Set operations. I am looking for good examples when to use the different operations.  A-B is easy.  Example - 'give me all employees that are not on maternity leave'.  But I am struggling with good practical examples on when to use Union and Intersection.  It needs to be examples that cannot be covered by selection criteria in one single query.
    Does anyone have any good practical examples?  Any help appreciated.
    Kirsten

    Hi Kirsten,
    I use Set Operations many times to find individuals who do not have a certain infotype or plan.  Example:  Find all retirees who are not enrolled in a medical plan.  Group A = All retirees;
    Group B = All retirees in a medical plan.  A - B = Retirees with no medical plan coverage. 
    Ad Hoc Query does not allow you to use "Or" logic in selection with different criteria.  A Union could be used for this.  An example would be employees who are in pay Grade 1 - 5 (Group A) or earn less than $50,000 per year (Group B).  Intersection would be those in Grades 1 - 5 and earn less than $50,000 per year. 
    Paul

  • How to activate Show Set Operations in Ad Hoc query

    When I go into ad hoc query using an infoset I created the Extras > Show Set Operations and Switch off object selection functions are greyed out and I cannot select them.  On another infoset these functions are available for selection.
    Is there some setting in the info set creation that allows these function to be available for selection?

    closing question

  • ORA-14551: cannot perform a DML operation inside a query

    I have a Java method which is deployed as a Oracle function.
    This Java method parses a huge XML & populates this data
    into a set of database tables.
    I have to call this Oracle function in a unix shell script using sqlplus.
    Value returned by this function will be used by the shell script to decide
    what to do next.
    I am calling the Oracle Java function as follows in the shell script:
    echo "SELECT XML_TABLES.RUN_XML_LOADER('$P1','$P2','$P3','$P4') FROM DUAL;\n" | sqlplus $DB_USER > $LOG
    This gives error - "ORA-14551: cannot perform a DML operation inside a query".
    If I have to add a AUTONOMOUS_TRANSACTION pragma to this Java function,
    where to I add it considering, that the definition of the function is in a Java class.
    Can we do it in call spec?
    create or replace package XML_TABLES is
    function RUN_XML_LOADER(xmlFile IN VARCHAR2,
    xmlType IN VARCHAR2,
    outputDir IN VARCHAR2,
    logFileDir IN VARCHAR2) RETURN VARCHAR2 AS
    LANGUAGE JAVA NAME 'XmlLoader.run
    (java.lang.String, java.lang.String, java.lang.String, java.lang.String)
    return java.lang.String';
    end XML_TABLES;
    If not is there any other way to acheive this?
    Thanks in advance.
    Sunitha.

    If I have to add a AUTONOMOUS_TRANSACTION pragma to this Java function,You'd have to write a PL/SQL function that calls the JSP. But I would caution you about using that pragma. It does introduce tremendous complexity into processing.
    As I see it you only need a function to return the result code so why not use a procedure with an OUT parameter?
    Cheers, APC
    Of course Yoann's suggestion of using an anonymous block would work too.
    Message was edited by:
    APC

  • "The specified server cannot perform the requested operation" when rpc from server 2003 to Windows 7

    I am having problems where all my Windows 2003 servers cannot rpc to 2 of my Windows 7 workstations, error message is "The specified server cannot perform the requested operation".
    All the machines are in workgroup environment.
    Windows 7 workstations: desk1, desk2, desk3, desk4, desk5, desk6
    Windows 2003 servers: server1, server2, server3, server4, server5
    Windows 2008 server: server6
    From any Windows 7 workstation I can rpc to any other machines,
    \\desk1\d$, no problem
    From any Windows 2003 server I can rpc to all the machines exception desk4 and desk5, they give the "The specified server cannot perform the requested operation". However, desk4 and desk5 can rpc to any other machines (including the Windows 2003
    servers), no problem
    From Windows 2008 rpc to desk4 and desk5 also no problem.
    I also have no problem rpc between any of the Windows 2003 servers,
    \\server2\d$ from server3, no problem.
    I turned off the firewall at desk5 and desk4, just to try, but didn't help, same problem. This show firewall is not the cause of the problem.
    Desk4 and Desk5 used to run Windows 2012 for 1 year and recently I downgraded them Windows 7 Professional x64. When they were running as Windows 2012, those Windows 2003 servers have no problem rpc to desk5 and desk4.
    The issue is thus lying between desk4 and desk5 with Windows 2003 only\
    Any suggestions?
    Valuable skills are not learned, learned skills aren't valuable.

    Hi,
    I found a related thread and a hotfix for similar issue:
    Problems Accessing Administrative Shares Remotely - Windows cannot access \\Servername\ShareName
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/9807a799-bea3-46ad-92a5-732779135f98/problems-accessing-administrative-shares-remotely-windows-cannot-access-servernamesharename?forum=winserver8gen
    You cannot access an administrative share on a computer after you set the SrvsvcDefaultShareInfo registry entry to configure the default share permissions for a network share
    https://support.microsoft.com/kb/971277/en-us
    Also please check if it is caused by security program such as antivirus program. 
    If you have any feedback on our support, please send to [email protected]

  • LabVIEW and Set Operations

    Hello all,
    I am a student at the University of Texas @ Austin and I have been
    looking through the LV 5.0 documentation for any documentation about
    Sets and/or Operations on Sets but cannot find anything usefull. Does
    anyone know if LV supports Sets and operations on Sets, for example,
    Union, Intersection, or just a way to specify the elements of a Set? I
    have an assignment to create a Non-Deterministic Finite State Machine
    Simulator and would like to implement it using LV? I have some ideas on
    how to Fake the set operations but it would be much easier to not have
    to re-invent the wheel. I will check the newsgroup, but please also
    respond to [email protected]
    Thanx in advance Jeffo ....

    "Jeffrey R. Orbach" wrote:
    > Does anyone know if LV supports Sets and operations on Sets, for example,
    >
    > Union, Intersection, or just a way to specify the elements of a Set?
    There are probably a number of ways to implement this in LabVIEW, depending
    upon what kind of data you want in your sets, what kind of operations you
    want to perform on them, etc. It's a pretty open-ended question without
    more detailed knowledge of what you're after.
    From my point of view, the LabVIEW array structure and its operators are a
    construct that provides some set-like functionality right away:
    specify set elements => array control on panel
    check for membership => Search 1D Array
    set union => Build Array (followed by Sort 1D Array if you want to keep the
    set sorted)
    set intersection
    => loop through one array using Search 1D Array on the
    other to generate output set
    This is one simple approach that shouldn't require a whole lot of coding or
    wheel reinvention...
    Regards,
    John Lum
    National Instruments

  • LV 5.0 and Set Operations

    Hello all,
    I am a student at the University of Texas @ Austin and I have been
    looking through the LV 5.0 documentation for any documentation about
    Sets and/or Operations on Sets but cannot find anything usefull. Does
    anyone know if LV supports Sets and operations on Sets, for example,
    Union, Intersection, or just a way to specify the elements of a Set? I
    have an assignment to create a Non-Deterministic Finite State Machine
    Simulator and would like to implement it using LV? I have some ideas on
    how to Fake the set operations but it would be much easier to not have
    to re-invent the wheel. I will check the newsgroup, but please also
    respond to [email protected]
    Thanx in advance Jeffo ....

    Tom Impelluso wrote:
    >
    > Hello
    >
    > Due to interncine battles between various system admin. people,
    > I have a problem.
    >
    > I have written a vi in lv 5.01, but must run it on a PC running
    > lv 5.0
    >
    > It uses facilities common to both so it should open on the PC with
    > 5.0, yet there is an error message
    > when I pull up the 5.01 vi with 5.0
    >
    > Is there a way I can go back to the 5.01 and save it as a version
    > 5.0 file?
    >
    > (yes, much easier to: load 5.01 on the PC, but that would involve,
    > warlocks, spells, and the power of conflicting system admin. people;
    > short of a kludge, I may have to re-write teh VI)
    >
    > Tom
    Nevermind!
    Figured it out.
    Sorry to post pre-maturely
    Tom

  • Set operations

    Does SEA toolkit allow set operations on subagent managed objects?
    We have installed SEA on our system and running demo subagent. But our Manager is refusing to perform any set operations on any of the variables on our system saying it is read only.

    Yes it does, at least Version 1.0.3 from the SEA SDK that I was using to create my SNMP subagent. Either you MIB is wrong or you failed to code the set callback functions correctly.
    Just my $0.02...

  • Getting error SQL Error : ORA-14551: cannot perform a DML operation inside a query

    Hi gurus ,
    Your help is greatly appreciated ..
    I am doing some changes in the fucntion for an existing package .Introducing the new below check , am updating one of the tables based on a if condition ..
           IF  numALLOWED_COUNT >= numLAST_COUNT_ADDED+1  THEN
                     blnGDS_Allowed :=True;
                      varSTMT := 'UPDATE PROD.TMS_PROCESS_COUNTER ';
                      varSTMT := varSTMT ||' SET last_count_added = last_count_added+1';
                      varSTMT := varSTMT ||' WHERE process_name = ''DAILY_GDS_COUNT''';
                      varSTMT := varSTMT ||' AND COUNTER_IND = ''750FD130''';
                     PROC_LOG('Update Tms_Process_counter varSTMT --' || varSTMT);
                     IF INSERT_BATCH(99,varSTMT) > 0 THEN
                        NULL;
                     END IF;
    Function for insert_batch :
    UNCTION INSERT_BATCH(numTABLE_ID IN NUMBER, varSQL_STATEMENT IN VARCHAR2) RETURN NUMBER IS
    varINSERT_BATCH_STMT  VARCHAR2(32767)     := NULL;
    varADD_REC_TYPE       BATCH_TABLES.ADD_REC_TYPE%TYPE;
    BEGIN
        PROC_LOG( 'INSIDE INSERT_BATCH IRC : ' || varSQL_STATEMENT );  --IRC 9/20 UC
        INSERT INTO BATCH_STATEMENT(QUEUE_ID,TABLE_ID,STATEMENT,QUEUE_SEQUENCE_ID)
        VALUES (numQUEUE_ID,numTABLE_ID,varSQL_STATEMENT,1);
    RETURN 1;
    EXCEPTION WHEN OTHERS THEN
        PROC_LOG('Failed in INSERT_BATCH');
        PROC_LOG('SQL Error : ' || SUBSTR(SQLERRM,1,1000));
        RETURN -1;
    END INSERT_BATCH;
    desc PROD.BATCH_STATEMENT
      QUEUE_ID           NUMBER(15)                 NOT NULL
      TABLE_ID           NUMBER(2)                  NOT NULL
      STATEMENT          VARCHAR2(4000 BYTE)        NOT NULL
      QUEUE_SEQUENCE_ID  NUMBER(5)                  NOT NULL
    Some how when its calling the insert_batch , its giving me the error in the logs as below:
    04:01:41 - Update Tms_Process_counter varSTMT --UPDATE PROD.TMS_PROCESS_COUNTER  SET last_count_added = last_count_added+1 WHERE process_name = 'DAILY_GDS_COUNT' AND COUNTER_IND = '750FD130'
    04:01:41 - INSIDE INSERT_BATCH IRC : UPDATE PROD.TMS_PROCESS_COUNTER  SET last_count_added = last_count_added+1 WHERE process_name = 'DAILY_GDS_COUNT' AND COUNTER_IND = '750FD130'
    04:01:41 - Failed in INSERT_BATCH
    04:01:41 - SQL Error : ORA-14551: cannot perform a DML operation inside a query

    Some how when its calling the insert_batch , its giving me the error in the logs as below:
    04:01:41 - SQL Error : ORA-14551: cannot perform a DML operation inside a query
    Yes - and the exception is telling you EXACTLY what the problem is. You have a query
    IF INSERT_BATCH(99,varSTMT) > 0 THEN
    And you are performing a DML operation inside that query:
    INSERT INTO BATCH_STATEMENT(QUEUE_ID,TABLE_ID,STATEMENT,QUEUE_SEQUENCE_ID)
        VALUES (numQUEUE_ID,numTABLE_ID,varSQL_STATEMENT,1);
    Like the exception says: you can't do that.
    You need to call the function using PL/SQL and capture the return value into a variable. Then test that variable:
    myVar := INSERT_BATCH(99,varSTMT);
    if myVar > 0 THEN

  • W540 BIOS update to 2.18 cannot boot to any operating system

    i try to update the BIOS of thinkpad w540 to BIOS version 2.18.
    Everything seems to work fine and it says to me the update is flashed.
    But now, when my w540 boots, it does everything as normal but when starting to load the operatig system it power off and reboot and do this again and again.
    I can enter the BIOS setup and the version is the updated one (2.18)
    I can change in the BIOS options and i can choose from where my w540 boots. i try to boot from the HD, a CD, a flash but no use (using Windows 7 on HD and Linux from flash and ESXi from CD).
    My Problem, i cannot boot to any operating system now.
    Any one can help please, Thanks.
    Solved!
    Go to Solution.

    Thank U ALOT Richk, i do what U say and also before that i restore the default bios setting and restor the keys to the factory settings. i write this as it may help some one another.
    Again Thank U ALOT Richk.

  • Problem in Adhoc Query's set operation functionality.

    Hi Experts,
    I am facing problem executing Adhoc Query's set operation functionality.
    In Selection Tab, following operations are performed :-
    Execute a query and mark it as 'Set A'.(Say Hit list = X)
    Execute another query and mark it as 'Set B'.(Say Hit list = Y)
    In Set operation Tab, following operations are performed :-:-
    Carry out an Operations 'Set A minus Set B'.
    which results in Resulting Set = Z.
    Transfer the resulting set 'in hit list' and press the copy resulting set button.
    In Selection Tab, Hit list is populated with Z.
    And when output button is pressed, I get to see 'Y' list and not 'Z' list.
    Kindly help.
    Thanks.
    Yogesh

    Hi Experts,
    I am facing problem executing Adhoc Query's set operation functionality.
    In Selection Tab, following operations are performed :-
    Execute a query and mark it as 'Set A'.(Say Hit list = X)
    Execute another query and mark it as 'Set B'.(Say Hit list = Y)
    In Set operation Tab, following operations are performed :-:-
    Carry out an Operations 'Set A minus Set B'.
    which results in Resulting Set = Z.
    Transfer the resulting set 'in hit list' and press the copy resulting set button.
    In Selection Tab, Hit list is populated with Z.
    And when output button is pressed, I get to see 'Y' list and not 'Z' list.
    Kindly help.
    Thanks.
    Yogesh

  • Set operations in AdHoc Query - user settings

    Hi
    I am checking out the Set operations in AdHoc Query.  The documentation says you should save the setting "Set operations shown" as a user setting.  Could anyone advise me where this is set?  I can't find a parameter for it, and can't find it in the regular settings.
    Any help appreciated.
    Kirsten

    The save is automatic upon exiting Ad Hoc query.  Once you do "Show Set Operations", work on a query, save and exit, the next time you open Ad Hoc query, Set Operations tab is displayed by default.
    Regards,
    RN.

  • After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

    After upgrading to Mountain Lion I am not able to access "security and privacy" button under "system preferences". I like to activate "find my mac" but cannot access privacy setting after upgrade. Kindly advice.

  • HT4527 I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help a

    I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help as such

    Then stop trying to use HomeShare and use one of the other options listed in the document from which your question was posted.

Maybe you are looking for