How to remove an object lock from database in VMM?

This seems to be a recurring issue for others as well, but the root cause might be different for each
I am in a situation where I can't add additional disks to a VM because of running intoError (2602) "Unable to perform the job because one or more of the selected objects are locked by another job" - however, other VMs on
the cluster are not locked and there are no other jobs running against the VM where I need to add the disks.
Looks like a quirk in the VMM database to me - maybe an "orphaned lock"?  Would love to know how to remove this or how to handle this issue, as the recommended action in VMM doesn't really help much at all (To find out which
job is locking the object, in the Jobs view, group by Status, and find the running or canceling job for the object. When the job is complete, try again.)  
Why doesn't VMM at least say which job is locking the object? 

This post is older than 30 days or we have not heard back from you. 
Did this issue get resolved?  If so, please share with community how you resolved. 
Otherwise, re-activate post if you still require assistance.
o   
Also, if you feel this is just a bug in SCVMM I recommend submitting bugs or recommendations to our connect site.  Connect offers the ability
to have the product team directly evaluate a bug, design, or feature request.  Here is the link:
https://connect.microsoft.com/site960
Carmen M. Summers (MSFT) --Posting is provided "AS IS" with no warranties, and confers no rights.

Similar Messages

  • How to remove an object/person from a photo

    I am working on some photos. I would like to keep the background image, but remove the people or an object in it. Is there a way to do that? If yes, how?
    Also could someone tell me how to add a person to a different background (than the original picture). What are the steps or ways to do that?
    Note: I have Photoshop Elements 6 for macs

    Mary,
    Actually, this was fairly easy to do.
    1. Use the Polygonal Lasso tool to roughly select the person, then use the arrow keys to move the selection to the left:
    http://www.pixentral.com/show.php?picture=1mAX25OsXTIreIjGbi6jNTCJKFAawa0
    2. Copy/Paste the selection to a new layer (Layer 1), and use the Move tool to move this to cover the person:
    http://www.pixentral.com/show.php?picture=1psigwltAR2fAPTymGYwOOrj2CHjoK0
    3. Since the right edge of the layer did not line up I had to slightly rotate the layer. You can use the Move tool to rotate but since it was a very fine adjustment I used the Free Transform and played around with the Rotate value in the toolbar. A value of -0.5 lined things up nicely, but I also had to use the arrow to nudge the layer up a bit.
    http://www.pixentral.com/show.php?picture=1XYwyI69U8zeW9NlH6qvKZE8FNV1Hq1
    As you can see in this shot the border of the new layer was noticeable:
    http://www.pixentral.com/show.php?picture=1qlLObbtSUIzi0AbDwSqDiAkvJpTmG1
    To fix this I used the Clone tool to clone adjacent areas over the seams, as you will see in the final shot.
    4. With the new layer, some of the morter between the bricks was missing and in some cases this was noticeable. Here's an example, a brick on the bottom row in the center:
    http://www.pixentral.com/show.php?picture=1iqLEmGNSqhas7RTDguwzwOHRRsBn
    I could have used the Clone tool to clone morter from elsewhere but I found it easier to use the Rectangular Marquee tool to select morter from another brick, Copy/Paste the selection to a new layer (Layer 2), and Move this layer over the missing morter.
    Here's the result at this point:
    http://www.pixentral.com/show.php?picture=1mGexOdSQzhanpw3fvDrPVa44gzXf0
    5. The clockwork was corrupted from Layer 1, so I temporarily turned off the visibility of Layer 1 and selected on the Background layer a portion of the good clockwork:
    http://www.pixentral.com/show.php?picture=1wX1ItQO89zlpBrIRydoYlAeRkBoe9
    6. Copy/Pasted this selection to a new layer (Layer 3), moved this layer to the top of the stack and used the Move and Free Transform tools to fine-tune the position. I had to use the Eraser tool to remove some of Layer 3 which covered the "R", and also used the Clone to clean up a bit more.
    Here's the final result:
    http://www.pixentral.com/show.php?picture=1wSdbCrlRalhJWQNJq67kXHaVecd0
    Hey, I took that same picture at Niagara Falls a few year ago!

  • How do I do to add and remove Shape3D objects dynamically from TransfGroup?

    Hi, everyone,
    How do I do to add and remove Shape3D objects dynamically from TransformGroup?
    I have added two Shape3D objects in the TransformGroup and I wanted to remove one of it to add another. But, the following exception occurs when I try to use �removeChild� :
    �Exception in thread "AWT-EventQueue-0" javax.media.j3d.RestrictedAccessException: Group: only a BranchGroup node may be removed at javax.media.j3d.Group.removeChild(Group.java:345)�.
    Why can I add Shape3D objects and I can�t remove them? Do I need to add Shape3D object in the BranchGroup and work only with the BranchGroup? If I do, I think this isn�t a good solution for the scene graph, because for each Shape3D object I will always have to use an associated BranchGroup.
    Below, following the code:
    // The constructor �
    Shape3D shapeA = new Shape3D(geometry, appearance);
    shapeA.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeA.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeA.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeA.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    Shape3D shapeB = new Shape3D(geometry, appearance);
    shapeB.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeB.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeB.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeB.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    BranchGroup bg = new BranchGroup();
    bg.setCapability(ALLOW_CHILDREN_READ);
    bg.setCapability(ALLOW_CHILDREN_WRITE);
    bg.setCapability(ALLOW_CHILDREN_EXTEND);
    TransformGroup tg = new TransformGroup();
    tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    tg.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    tg.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
    tg.setCapability(TransformGroup.ALLOW_CHILDREN_WRITE);
    bg.addChild(tg);
    tg.addChild(shapeA);
    tg.addChild(shapeB);
    // The method that removes the shapeB and adds a new shapeC �
    Shape3D shapeC = new Shape3D(geometry, appearance);
    shapeC.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeC.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeC.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeC.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    tg.removeChild(shapeB);
    tg.addChild(shapeC);Thanks a lot.
    aads

    �Exception in thread "AWT-EventQueue-0"
    javax.media.j3d.RestrictedAccessException: Group:
    only a BranchGroup node may be removed I would think that this would give you your answer -
    Put a branch group between the transform and the shape. Then it can be removed.
    Another thing you could try: This doesn't actually remove the shape, but at least causes it to hide. If you set the capabilities, I think you can write the appearance of the shapes. So, when you want to remove one of them, write an invisible appearance to it.

  • How to remove the Object from memory.

    Hello.
    Flash file that i made with Flex Builder uses memory too
    much.
    Look at the next example source code.
    var testCan:Canvas = new Canvas();
    this.addChild(testCan);
    this.removeChild(testCan);
    testCan = null;
    but just memory usage still goes up, is not freed instantly.
    so if i load the large flash files on my web browser,
    after 5 munites or something, the web browser is down.
    How to remove the object from memory immediately without
    delay?

    It's all about the Garbage Collector ..
    There is a nice write up here :
    http://www.gskinner.com/blog/archives/2006/06/as3_resource_ma.html

  • How to remove unused objects from the webcatalog In OBIEE11g

    Hi,
    I want to delete unused objects from obiee11g catalog, i know in obiee10g it's working fine (i.e: we can do it via manage catalog then delete the unused objects) is there any way to do it automatically like RPD utility --->removing unused objects from Physical layer in RPD
    fyi: I don't want to delete manualy. i need somethink like button/link to find unused objects(report,filter,folder..etc) from my obiee11g catalog.
    Thanks
    Deva
    Edited by: Devarasu on Nov 29, 2011 12:06 PM
    Edited by: Devarasu on Nov 29, 2011 3:15 PM

    Hi,
    Checked with Oracle Support team and confirmed below points
    --> incorporated into the Current product and consider as BUG it may resolve future release
    --> Currently there isnt any automatic method to remove the unused objects like reports, filters,folder etc from catalog.
    Treated as Bug
    Bug 13440888 - AUTOMATICALLY REMOVE OF UNUSED CATALOG OBJECTS FROM WEBCATALOG
    FYI:
    SR 3-4984291131: How to remove unused objects from the webcatalog in obiee11g
    Thanks
    Deva

  • How to store java objects in the database

    Hi,
    I am trying to store HttpSession state across Application Servers. Basically I am trying to build a sort of application cluster server on my own. I thought the best way to do this was to periodically store the HttpSession object from an application server in a database.
    I created a table in Oracle 8i with a blob column. I use a PreparedStatement.setObject() method to store the HttpSession object in the database. My problem is, I don't know how to get the object back from the database.
    Since ResultSet.getBlob returns the Blob locator, I need to read the BinaryInputStream to get all my data back. This tells me that getBlob basically works only for things like files, and cannot be used for Java objects.
    Is there any way around this? Your input would be much appreciated.
    Regards,
    Somaiah.

    Thanks for the quick reply vramakanth.
    Do I have to use a type map if I do this? Also does such a type map exist for the HttpSession class?
    Thanks,
    Somaiah.

  • How to remove an object on elements 12

    how to remove an object or person from photo on elements 12

    Use the quick selection tool to outline the person and then press Ctrl+J to extract the selection on to a new layer.
    You can then delete the background layer or turn off the eye symbol and add a new background image as required.
    See my tutorial at this thread:
    Re: How can i save an extracted image to be able to edit it

  • How to remove the pic icon from the start screen?

    How to remove the pic icon from the start screen?

    You can turn it off via Settings > General > Passcode Lock > Picture Frame , but only if you have a passcode set - if you don't use a passcode lock, then you can't turn picture frame off (the option will be greyed out)

  • How to remove existing apple id from ipad 2

    HOW TO REMOVE EXISTING APPLE ID FROM IPAD 2 THAT I BOUGHT FROM THE FIRST OWNER

    If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. No must contact the previous owner to get permission to use the device. If you cannot contact the previous owner return the device to where you bought it and get a refund. You will never be able to activate the device and no one can help you do it.

  • How can I send a message from database to a J2EE application?

    How can I send a message from database to a J2EE application?
    If I have a codetable in database that has new or modified values I have to refresh the codetable in my J2EE application.
    Most effective way would be send a message to initiate a table reload from J2EE app, but I don't know how to do this.
    Now I have a background thread that regular reads the table and looks for changes.

    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_AQ_Configuration.pdf
    This document details how to create triggers on a table that send out JMS messages.
    In this example, the messages are going to Oracle BAM.. your message could go to your J2EE application listening to its own topic/queue.
    an alternative idea.
    you could also just cache your lookup table with something like Oracle Coherence and than try to ensure that all changes to the lookup go through Coherence, so that you won't need to do notification from the db up to the application. the application and the lookup data management tool would be using the data grid for management of the lookup table data, and the data grid (coherence) would persist the lookup data changes back to the db.

  • HT1918 How to remove my credit card from my App Store Account?

    How I remove my credit card from my Apps Store Account??
    I want to avoid unwanted purcharses from my nephew.... Someone can help me?
    I know it's possible to "upgrade" one account adding credit card, I can not find a way to remove it.

    you can't from the iPad.
    Go to iTunes on a computer, log in with your apple ID and select 'account'.
    After that , select 'payment method' and select 'none'.
    Good luck
    PS: reply if you're having trouble. You use mac or windows?
    Message was edited by: jesterwylde

  • How to remove credit card details from iPad 4. So I can download free apps from apps store??

    Please someone tell me how to remove credit card details from iPad 4, so I download free apps from App Store??

    None for payment
    After establishing the Credit Card account, you can remove the credit card information by editing your payment info, choosing "None".
    Note: You won't find "None" if you have not purchase anything with the Credit Card.

  • How to remove the credit card from the Apple id?

    how to remove the credit card from the Apple id?
    plz ITS urgently

    If the option to select "None" isn't appearing when you attempt to edit your payment information, then there is likely a billing issue with your last iTunes Store purchase(iTunes didn't receive payment from your credit card company for that order). Before you can remove your credit card, you have to pay for the unpaid order. You can call your credit card company and troubleshoot the billing issue with them, or try another card, or if you live in a country that supports iTunes Gift Cards, you can redeem one of those to pay for the order. Once you have done that, you should be able to remove your credit card info as outlined in http://support.apple.com/kb/ht1918

  • How to remove my credit card from the App Store

    How to remove my credit card from the App Store

    I used a pre-loaded credit card so when it ran out i had problems, primarily because it wont let me download or update anything until the "billing problem with the last transaction" was resolved. I dont really care if the purchase goes through but i want to be able to update stuff again and it wont give me the option to select 'none' under payment type. do i have to put another card on there just so i can "resolve the billing problem" and then i have  to take it off again or is there a way around this or is it a never ending cycle?

  • How to remove the silican ball from the audio jack

    how to remove the silican ball from the audio jack in DV6 6116 laptop

    Try a vacuum, otherwise it will certainly require disassembly to attempt to remove it from the jack.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

Maybe you are looking for