One VM guest on two repositories (Ora VM 2.2.2)

Hello,
our customer use two repositories - one was planned for system disks for VM guests,
second was planned for data disks for VM guests.
When I create VM guest with two disks using VM manager, both disks are on the same
repository. When I move datadisk to second repository and correct vm.cfg, I got following
error message:
Start - /OVS/running_pool/66_RPPDB01-RHEL
PowerOn Failed : Result - failed:<Exception: return=>failed:<Exception: failed:<Exception: Bad disk found: ['file:/var/ovs/mount/04EB96CE23B54A5D9E9F31B7A188435A/running_pool/66_RPPDB01-RHEL/data.img,hdb,w'].>
StackTrace:
File "/opt/ovs-agent-2.3/OVSXXenVMConfig.py", line 370, in xen_correct_cfg
raise Exception("Bad disk found: %s." % str(bad_disks))
>
StackTrace:
File "/opt/ovs-agent-2.3/OVSXXenVM.py", line 51, in xen_start_vm
raise Exception(rs)
>
StackTrace:
File "/opt/ovs-agent-2.3/OVSSiteVM.py", line 134, in start_vm
raise e
Path to datadisk file is different in vm.cfg, in error message is original path.
Is it possible to configure one VM guest, which uses two repositories?
Thank you for any tip.
Regards
Vladislav Rames

user6126629 wrote:
Is it possible to configure one VM guest, which uses two repositories?This is not supported on Oracle VM 2.2.2. You can do this on Oracle VM 3.0.

Similar Messages

  • TWO ERRO ORA-01427: single-row subquery returns more than one row

    Hi,
    I have a procedure which contains a cursor. If i run the select statement in the cursor separetly, it returns only value and works fine. But the same select statement in the cursor of a procedure throws me the error as below:
    TWO ERRO ORA-01427: single-row subquery returns more than one row
    Not sure what going on...any help appreciated.
    Below is the select statement:
    SELECT DISTINCT PSE.PARENT_POSITION_ID,
    (SELECT DISTINCT PPD1.SEGMENT2
    FROM PER_POSITION_DEFINITIONS PPD1,
    HR_ALL_POSITIONS_F HAPF2,
    PER_POS_STRUCTURE_ELEMENTS PSE2
    WHERE TRUNC(SYSDATE) BETWEEN
    HAPF2.EFFECTIVE_START_DATE AND
    HAPF2.EFFECTIVE_END_DATE
    AND PPD1.POSITION_DEFINITION_ID =
    HAPF2.POSITION_DEFINITION_ID
    AND
    HAPF2.POSITION_ID = PSE2.PARENT_POSITION_ID
    AND PSE2.PARENT_POSITION_ID =
    PSE.PARENT_POSITION_ID
    AND ROWNUM = 1) SEGMENT2,
    (SELECT DISTINCT PAPF1.FIRST_NAME || ' ' ||
    PAPF1.LAST_NAME CHIEF_NAME
    FROM PER_ALL_PEOPLE_F PAPF1,
    PER_ALL_ASSIGNMENTS_F PAAF1
    WHERE TRUNC(SYSDATE) BETWEEN
    PAPF1.EFFECTIVE_START_DATE AND
    PAPF1.EFFECTIVE_END_DATE
    AND TRUNC(SYSDATE) BETWEEN
    PAAF1.EFFECTIVE_START_DATE AND
    PAAF1.EFFECTIVE_END_DATE
    AND PAAF1.POSITION_ID = PSE.PARENT_POSITION_ID
    AND PAPF1.PERSON_ID = PAAF1.PERSON_ID
    AND ROWNUM = 1) CHIEF_NAME
    FROM PER_POS_STRUCTURE_ELEMENTS PSE,
    HR_ALL_POSITIONS_F HAPF,
    PER_POSITION_DEFINITIONS PPD
    WHERE PSE.SUBORDINATE_POSITION_ID = 52744
    AND TRUNC(SYSDATE) BETWEEN HAPF.EFFECTIVE_START_DATE AND
    HAPF.EFFECTIVE_END_DATE
    AND HAPF.POSITION_ID = PSE.SUBORDINATE_POSITION_ID
    AND HAPF.POSITION_DEFINITION_ID = PPD.POSITION_DEFINITION_ID;
    Thanks
    PK
    Edited by: user539616 on Jun 30, 2009 6:30 PM

    Hi,
    The cursor has a different parameter? Maybe the query is not exactly the same. Could you check this?
    This is your query (formatted):
    SELECT DISTINCT PSE.PARENT_POSITION_ID,
                    (SELECT DISTINCT PPD1.SEGMENT2
                       FROM PER_POSITION_DEFINITIONS   PPD1,
                            HR_ALL_POSITIONS_F         HAPF2,
                            PER_POS_STRUCTURE_ELEMENTS PSE2
                      WHERE TRUNC(SYSDATE) BETWEEN HAPF2.EFFECTIVE_START_DATE AND
                            HAPF2.EFFECTIVE_END_DATE
                        AND PPD1.POSITION_DEFINITION_ID = HAPF2.POSITION_DEFINITION_ID
                        AND HAPF2.POSITION_ID = PSE2.PARENT_POSITION_ID
                        AND PSE2.PARENT_POSITION_ID = PSE.PARENT_POSITION_ID
                        AND ROWNUM = 1) SEGMENT2,
                    (SELECT DISTINCT PAPF1.FIRST_NAME || ' ' || PAPF1.LAST_NAME CHIEF_NAME
                       FROM PER_ALL_PEOPLE_F      PAPF1,
                            PER_ALL_ASSIGNMENTS_F PAAF1
                      WHERE TRUNC(SYSDATE) BETWEEN PAPF1.EFFECTIVE_START_DATE AND
                            PAPF1.EFFECTIVE_END_DATE
                        AND TRUNC(SYSDATE) BETWEEN PAAF1.EFFECTIVE_START_DATE AND
                            PAAF1.EFFECTIVE_END_DATE
                        AND PAAF1.POSITION_ID = PSE.PARENT_POSITION_ID
                        AND PAPF1.PERSON_ID = PAAF1.PERSON_ID
                        AND ROWNUM = 1) CHIEF_NAME
      FROM PER_POS_STRUCTURE_ELEMENTS PSE,
           HR_ALL_POSITIONS_F         HAPF,
           PER_POSITION_DEFINITIONS   PPD
    WHERE PSE.SUBORDINATE_POSITION_ID = 52744
       AND TRUNC(SYSDATE) BETWEEN HAPF.EFFECTIVE_START_DATE AND HAPF.EFFECTIVE_END_DATE
       AND HAPF.POSITION_ID = PSE.SUBORDINATE_POSITION_ID
       AND HAPF.POSITION_DEFINITION_ID = PPD.POSITION_DEFINITION_ID;Tips: To put formatted code you must use {noformat}{noformat} tags, start tag and end tag are the same,you don't need to put '/' in the close tag.
    Regards,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to merge two repositories using(MUD)

    hi all,
    how to merge two repositories using mude, for example i have sh rpd and paint rpd how to merge two repositories using Multi user development(mud), please don't give venkat forums link and oracle's training doc links.
    Is this possible? if it is possible please help me .
    Thanks
    Naresh

    Hi Naresh,
    What you could do is:
    1. do a ontime command line merge of both repository using the nqudmlexec tool
    2. In the mergerd repository created two project (sh and paint) and assign one bussiness model to each project.
    3. Make this the master repository for your MUD.
    4. Check the projects in and out.
    regards
    John
    http://obiee101.blogspot.com

  • Two repositories in sync, checkoutallcomps

    What is a practical method of keeping two repositories in sync?
    We have two development repositories that we keep in sync for
    foundational/framework components:
    main development repository
    prototyping repository (new and unusual applications/services)
    The prototyping repository is kept synchronized with changes in
    the main development repository by exporting a workspace with
    IDs from the main repository and importing it into the
    prototyping repository. In order to import the workspace we need
    to check out all components in all plans/projects that are in the
    workspace export file.
    The problem we are having is that generated components in
    Express-generated projects---these are the "<...>Base<...>"
    classes---are not checked out by the fscript command
    "checkoutallcomps". It appears that the only way to check out
    all components in an Express-generated project is to check them
    out individually with the fscript command "checkoutcomp".
    fscript also does not appear to have any language constructs for
    iterating over all components in a project.
    Any ideas on the checkoutallcomps problem, or generally on
    keeping two repositories in sync?
    John Hodgson |Descartes Systems Group Inc.|Tel 1-519-746-8110 x2250
    Systems Engineer|120 Randall Drive |Fax 1-519-747-0082
    |Waterloo, Ontario |www.descartes.com
    |CANADA N2V 1C6 |[email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Ahh...Well this question about sync-ing Macs has been tossed around so much, the answer is down to you and which program you like the most.
    I personally would suggest DropBox or Sugar Sync for your needs, as Chronosync can sometimes be a bit temperamental (in my personal experience). With both DropBox and SugarSync you pay for how much data space you need to store the data and a good option in it is that you and select what you want sync-ed from one Mac and where you want it placed in the other Mac. You can have it Bidirectional (both ways) or just one direction. And also you then have another Online Backup of your data so you know its safe. With both Sugar Sync and DropBox you get encryption so no one can (theoretically) get your data while it is being transferred.
    I have tried both Sugar Sync and DropBox for a short period of time and they both are great for situations like yours.
    Now for what you want sync-ing is again down to what you need, but as you want your documents and Lightroom lib. then you basically need to sync your Documents, Pictures folder and Music folder (if you want it). I am guessing you have Lightroom and Photoshop installed on both Macs (if so, there is no need to sync then Apps folder).
    I personally no longer use a Sync method as I have set my Mac Pro up as a server so when out I can VNC and AFP back into it using a DynamicDNS host name. If you want to know about this option ask and I will explain in detail.
    Hope this Helps.
    Adam.

  • HT204053 Can I use one Apple ID for two Apple IPhones?

    Can I use one Apple ID for two Apple IPhones? I received an answer of yes.
    Now another question.  I have one ICloud Account, Two IPhones.  Can I use Find my IPhone via the one ICloud Account?  Can I see two IPhones on the map at the same time?  or do I need to view the second phone via some other method.
    Message was edited by: Hunter3D

    Yes.
    Cheers,
    GB

  • One apple id for two iPhone

    Is it possible tou use just one aple id for two iPhones?

    Read here:
    http://support.apple.com/kb/HT1495

  • Is it possible to have your whole family on one apple id or is it better to have each person have there own? If each has their own does each id have to buy their own music and apps? How does find my iphone work with one apple id or two?

    Is it possible to have your whole family on one apple id or is it better to have each person have there own? If each has their own does each id have to buy their own music and apps? How does find my iphone work with one apple id or two? also I am going to be going off to college soon should I make an itunes id for my self and how will I get all the music from the old id?

    Is it possible to have your whole family on one apple id or is it better to have each person have there own?
    Yes, it is possible. 1 apple ID can be associated with up to 10 devices.
    If each has their own does each id have to buy their own music and apps?
    Yes, all purchases are non-transferable.
    How does find my iphone work with one apple id or two?
    Every device associated with one apple ID through Find my iPhone is tied to that Apple ID; Find my iPhone will work in the same way with up to ten devices associated with one apple ID. You cannot enable Find my iPhone for one device across two apple IDs
    I am going to be going off to college soon should I make an itunes id for my self and how will I get all the music from the old id?
    If you have authorized a computer with the old apple ID, you can transfer old media purchased through the old to other devices via iTunes. This doesn't mean the media purchases through the old apple ID it transferred to the new account. If you plan to make future purchases and don't wish to share them with others, make your own apple ID.

  • I have one itunes account with two phones. when i phone one of the numbers both phones have started to ring, only when connected to wifi at home. How do i resolve this please?

    I have one itunes account with two phones assigned to it, sons and daughters, (5s). When i phone one of the numbers both phones have started to ring, only when connected to wifi at home. The problem does not occur when not connected to wifi. How do i resolve this please? texting is fine it is only when ringing one of the numbers.

    <http://support.apple.com/kb/HT6337>
    "To turn off iPhone Cellular Calls on a device, go to Settings > FaceTime and turn off iPhone Cellular Calls."

  • How do I share one itunes account between two users on the same computer

    How do I share one itunes account between two users on the same computer without taking up twice as much space on my hard drive?

    You would need to move the itunes folder to a location that both users have permissions to access such as the Shared folder or any folder on the root level of the macintosh HD.
    You can find instructions here http://support.apple.com/kb/HT1203 This method allows you to share the content without sharing the same library.

  • Two users share one Apple ID, on two phones. can they be separated without losing phone backups? IE creating a new ID for one of the users?

    my in-laws share one apple id for two separate iPhones. They would like to create a new ID for one of the users but maintain his current backup. can this be done?

    If you want to create a new account make sure you sign out of everything via the settings. (ICloud, iTunes, facetime, messages, etc) APPS: since the apps were downloaded with a different apple ID, you will always need to use the password for the apple ID that downloaded that particular APP when it needs to be updated. Unless it is free, you can simply delete it and download it under the new apple ID. As for the music, you can keep it on the IOS device,  but if it's accidentally deleted, you'd have to sign back into the original account and download from the cloud. (But, you risk getting the 90 day lockout. )

  • One wireless keyboard with two computers?

    This has already been asked probably but there is no specific area for Apple's new wireless keyboard (aluminum).. so here it goes:
    I have a desk with a MAC MINI and a monitor on it. (currently wired keyboard, wired mouse)
    Planning to buy the wireless keyboard.
    I also have an additional spare monitor on my desk so it would be nice if I could just plug that into my MACBOOK and use the wireless keyboard from the Mini to wake it from sleep.
    Somehow tell the keyboard (and mouse...) to control the other computer
    One keyboard and one mouse on desk -- two computers. Can this be done?
    Greg

    I'm in the same boat with you on this one. I have to unpair it with one before it will pair with the other. Too much to fiddle with just to reduce clutter on the desk. I eagerly await someone's creative solution.

  • Sharing Music: using one iTunes account for two users on one MacBook Air

    I'm trying to set up my parents on their new MacBook Air and I have set up an account for each of them. To keep their music collection simple & compact I want them both to use one iTunes account on the one machine. Can two separate users work off the same iTunes account on the one machine?
    I have tried the Home Sharing function but this seems to be for separate machines rather than accounts.
    I have also tried putting the music into a shared folder but this hasn't worked properly for me as the secondary account is able to purchase (but not download) the music correctly from iTunes.
    Any help appreciated. Thank you.

    I'm trying to set up my parents on their new MacBook Air and I have set up an account for each of them. To keep their music collection simple & compact I want them both to use one iTunes account on the one machine. Can two separate users work off the same iTunes account on the one machine?
    I have tried the Home Sharing function but this seems to be for separate machines rather than accounts.
    I have also tried putting the music into a shared folder but this hasn't worked properly for me as the secondary account is able to purchase (but not download) the music correctly from iTunes.
    Any help appreciated. Thank you.

  • Using one Itunes database across two macs

    Using one itunes database across two macs
    I currently run a 2010 MBP (500gb hd) at home and on the road and a 2013 Imac (1Tb hd) at work. I have a large lossless itunes library of about 300gb and would like to increase the library further.
    My MBP started running slowly and I realised that my iTunes library was choking the whole computer. I started to explore ways to store my library on a remote disk and bought a G drive 1Tb portable drive.
    My efforts to carry out the transfer were only partially successful with most of my library transferring but a significant number of tracks displaying the ! sign which means they couldn't be located.
    I have also got an Imac at work and what I had hoped to achieve was to have my iTunes database on the 1tb portable drive and use the portable disk on both my MBP and iMac.
    Our technical support company are dubious about whether this will work because the local specific itunes library data on each machine will differ and each machine will not operate correctly with the underlying data on the portable drive.
    I am not very technical and I am finding it difficult to follow the various posts on this board and elsewhere. Many seem to comment on splitting their library across multiple disks but I cant really seem to get to the bottom of storing my library on one disk and using it across multiple computers.
    Is what I am trying to achieve practical?
    If it is, can someone point me to an article/post please? Or alternatively could someone explain how I might achieve my goal.
    Thanks in a advance for your help.

    Here you go.
    http://lifehacker.com/software/itunes/ultranewb--how-to-move-your-itunes-library -to-an-external-drive-238296.php

  • Can I use one phone number on two iphones with two apple ids?

    My carrier allows multiple sim cards with the same phone number for usage on different devices. I would like to use a second sim card for my phone number on a second iphone, but with a different apple id.
    Is it possible to use one phone number on two iphones with separate apple ids? How does this affect facetime/imessage?
    I can only find answers to using the same apple id on multiple devices. This works fine, but is not what I want to do here.

    You may be able to change the suspicious account activity message alerts
    in your Gmail settings, and check that side of it, since I can use several
    means of accessing my Gmail and Google Accounts; and in the past had
    shared an account (not google) with another party half a world away when
    her email server went down for a month.
    The Mail software should not know the difference, unless the setup in there
    is not correct; if this is so, then more than what she says would be wrong.
    The Google mail Support help site pages should cover this adequately.
    Gmail Help - Google Help
    https://support.google.com/mail/?hl=en

  • Is there a way to share one music library with two seperate icloud accounts?

    Is there a way to share one music library with two seperate icloud accounts? I have over 12,000 songs in my library and my son likes the same music, but recently his ipod touch is picking up the texts from my wife's and my phone? I was told the only way to stop this is by giving him his own icloud account which would mean he wouldn't have access to my music library. Any ideas?

    He can still use your Apple ID for iTunes content, no issues. He just gets a separate ID for everything else.

Maybe you are looking for