Foglight master with the Federated child vFoglight

Hi people,

If I have a master of Federation Foglight with cartridge of VMware, is it possible to have a federated vFoglight child as long as the requirements are met?

Thank you.

Kind regards

Hollis

Hi Hollis,

We have tested this configuration in our lab and it worked as expected.

Kind regards

Darren

Tags: Dell Tech

Similar Questions

  • Possible to integrate environmental Foglight existing with the purchase of a new vFoglight?

    We have used Foglight and JavaEE cartridges for years and are now looking to expand our use of Foglight to include vFoglight and cartridges of the database as well. I was looking around for more information on how to integrate our existing with the new monitoring vFoglight Foglight Management Server, because it seems to be a distinct type FMS console.

    I came across this old thread: http://en.community.dell.com/techcenter/virtualization/infrastructure/f/4826/t/19550426#10367

    Is it really as simple as updating the license file to get the vFoglight features in our existing FMS?

    Yes, you add the cartridges additional thanks to licensed and ready to start the deployment.

    Depending on the size of your environment, may want to be careful about the scalability of your current hardware, etc..

  • Trying to update my card from adobe to reactivate my account, but always met information can not verify information! I tried 2 cards mast with the same result.

    help please

    Since this is an open forum, not Adobe support... you must contact Adobe personnel to help

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

  • How to select only the last child nodes in a piece of XML via XMLTABLE?

    Hello

    I use Oracle 10.2.0.4.

    I have the following XML:
    with sd as (select xmltype('<Fruits>
                                  <Fruit>
                                    <FruitType>Apple</FruitType>
                                    <FruitSubtype>Granny Smith</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Pear</FruitType>
                                    <FruitSubtype>Anjou</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Pear</FruitType>
                                    <FruitSubtype>Comice</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Plum</FruitType>
                                    <FruitSubtype>Victoria</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Apple</FruitType>
                                    <FruitSubtype>Bramley</FruitSubtype>
                                  </Fruit>
                                </Fruits>') fruit_xml from dual)
    select *
    from   sd;
    and I want to choose the last child nodes where the FruitType is Apple or pear.

    So far, I've got:
    with sd as (select xmltype('<Fruits>
                                  <Fruit>
                                    <FruitType>Apple</FruitType>
                                    <FruitSubtype>Granny Smith</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Pear</FruitType>
                                    <FruitSubtype>Anjou</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Pear</FruitType>
                                    <FruitSubtype>Comice</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Plum</FruitType>
                                    <FruitSubtype>Victoria</FruitSubtype>
                                  </Fruit>
                                  <Fruit>
                                    <FruitType>Apple</FruitType>
                                    <FruitSubtype>Bramley</FruitSubtype>
                                  </Fruit>
                                </Fruits>') fruit_xml from dual)
    select x.*
    from   sd,
           xmltable('//Fruits/Fruit[FruitType=''Apple'' or FruitType=''Pear'']'
                   passing sd.fruit_xml
                   columns fruit_type VARCHAR2(25) path '//FruitType',
                           fruit_subtype VARCHAR2(25) path '//FruitSubtype') x;
    
    FRUIT_TYPE                FRUIT_SUBTYPE
    ------------------------- -------------------------
    Apple                     Granny Smith
    Pear                      Anjou
    Pear                      Comice
    Apple                     Bramley
    but I just want to finish with the last child node by FruitType, for example:
    FRUIT_TYPE                FRUIT_SUBTYPE
    ------------------------- -------------------------
    Pear                      Comice
    Apple                     Bramley
    Is it possible to do through XMLTABLE, or I have to number each of the lines that results from (what I know how to do) and then create a group to prove XMLTABLE? The latter seems awkward to me, so I'd avoid it if possible, but if this is the way to go, I can do it.

    Thank you.

    Is it possible to do through XMLTABLE, or I have to number each of the lines that results from (what I know how to do) and then create a group to prove XMLTABLE?

    Indeed, it is a possible way:

    select x.fruit_type,
           min(fruit_subtype) keep(dense_rank last order by rn) as fruit_subtype
    from   sd,
           xmltable('/Fruits/Fruit'
                   passing sd.fruit_xml
                   columns fruit_type VARCHAR2(25) path 'FruitType',
                           fruit_subtype VARCHAR2(25) path 'FruitSubtype',
                           rn for ordinality) x
    where fruit_type in ('Apple','Pear')
    group by fruit_type
    ;
    

    Other options, should push the logic of consolidation in the XQuery:

    select x.*
    from sd,
         xmltable('/Fruits/Fruit[FruitType="Apple"][last()] |
                   /Fruits/Fruit[FruitType="Pear"][last()]'
                  passing sd.fruit_xml
                  columns fruit_type VARCHAR2(25) path 'FruitType',
                          fruit_subtype VARCHAR2(25) path 'FruitSubtype'
         ) x
    ;
    

    or,

    select x.*
    from   sd,
           xmltable('for $i in distinct-values(/Fruits/Fruit/FruitType)
                     return /Fruits/Fruit[FruitType=$i][last()]'
                   passing sd.fruit_xml
                   columns fruit_type VARCHAR2(25) path 'FruitType',
                           fruit_subtype VARCHAR2(25) path 'FruitSubtype'
                           ) x
    where x.fruit_type in ('Apple','Pear')
    ;
    

    or,

    select x.*
    from   sd,
           xmltable('/Fruits/Fruit[not(following-sibling::Fruit/FruitType=./FruitType)]'
                   passing sd.fruit_xml
                   columns fruit_type VARCHAR2(25) path 'FruitType',
                           fruit_subtype VARCHAR2(25) path 'FruitSubtype'
                           ) x
    where x.fruit_type in ('Apple','Pear')
    ;
    

    Edited by: odie_63 APR 17. 2012 17:56 - added latest example

  • How do I change the EO master during the updating of the child EO?

    I finished the map marker 'Building a Fusion Web Application' which is pretty basic, and shows that you have to update a master table (COMMAND) and display lines (ORDER_ITEM) child associated with the master file. This is perfect, but of course in the 'real world', you need to update / add items to an order. Naturally, after add/update the table ORDER_ITEMS, wish the ORDER_TOTAL value in the ORDER table to reflect the change. In other words, if you double the amount of one of the elements, the ORDER_TOTAL value in the roll of the ORDER should increase.

    To enlarge the map marker, so I added another page that allows me to update the values in the table ORDER_ITEMS which works very well - it's just out-of-the-box ADF magic. The (Simplified) workflow looks like page 1 of the attached document (masterchile.docx). I tried two ways to update the ORDER_TOTAL in the roll of the ORDER after an add/update to the ORDER_ITEM table.

    (1) change the orderview to include a nested select statement that calculates the ORDER_TOTAL dynamically

    SELECT Orders.ORDER_ID,

    Orders.ORDER_DATE,

    Orders.ORDER_SHIPPED_DATE,

    Orders.ORDER_STATUS_CODE,

    (select order_items one sum(unit_price * quantity)

    where a.order_id = Orders.order_id

    Order_id group)

    AS ORDER_TOTAL.

    Orders.CUSTOMER_ID,

    Orders.SHIP_TO_NAME,

    Orders.SHIP_TO_ADDRESS_ID,

    Orders.SHIP_TO_PHONE_NUMBER,

    . . . .

    (2) add an update to the value ORDER_TOTAL in CONTROL Panel with the workflow after an add/update table ORDER_ITEM and COMMIT.

    setting a day = order_total set commands? where order_id =?

    With or the other solution, I get the same results that looks like this

    I update the ORDER_ITEM table in the editOrderItem.jsff page, the workflow performs a VALIDATION and returns to the page editOrder.jsff, amount ORDER_TOTAL does not reflect change. Hit Cancel to editOrder.jsff back to order.jsff that show the right amount ORDER_TOTAL. Back to order.jsff editOrder.jsff and displays the correct value for ORDER_TOTAL. It seems that the values in the form of the ADF inside the order.jsff are cached and the page refreshes ever against the updates of the database. I tried to do editOrder.jsff refresh by changing the properties of refreshment "true" to "false". Also changed CacheResults of the 'true' to 'false '. Tried to change the flow of "no controller action" task properties to 'always start a new transaction.

    Thanks in advance,

    Rob

    You might get a better answer if you find a space where they discuss your product.  This space is to the Oracle database.  Try to search for some of your keywords, like Fusion.

  • I let my child play with the computer, now when I click on a tab, it shows "(*)" to bottom of page, as the wheel of the mouse to zoom in and out and not scroll. I don't know how to fix it.

    I have let the child play with the computer. Now when I click on a tab it show (*) rather than to go to the tab, zoom on the wheel of the mouse rather that scroll and all links open a new window. How can I reset the settings to the default ones?
    Thank you.

    The reset Firefox feature can solve a lot of problems in restaurant Firefox to its factory default condition while saving your vital information.
    Note: This will make you lose all the Extensions, open Web sites and preferences.

    To reset Firefox, perform the following steps:

    1. Go to Firefox > help > troubleshooting information.
    2. Click on the button 'Reset Firefox'.
    3. Firefox will close and reset. After Firefox is finished, it will display a window with the imported information. Click Finish.
    4. Firefox opens with all the default settings applied.

    Information can be found in the article Firefox Refresh - reset the settings and Add-ons .

    This solve your problems? Please report to us!

  • Buy an iPod, reset it and knew I had to turn off find my iPhone. I have no way to get in touch with the owner login Apple ID account their child to do such, both parties assumed reseting it would be all that was necessary.

    As said, I recently bought a used iPod from the original owner, they had gotten their child a new iPhone and is more used to the iPod. When asked, they told everything what I need to do is to reset the iPod when I got home. Got home and went about resetting it, but when you attempt to set it upward and connect to iTunes, it says that I need their last ID. Apple I'm not able to get in touch with the original owner, I didn't to get any contact since I wasn't worried for their need (had taken as them all I would need to do is to put) to nine).

    Is it possible to fix this? I realized this is cause I have to disable find it my iPhone thing, I did not know was even a thing or would have done so before resetting the iPhone.

    Thank you for anyone who is able to help!

    I'm sorry.

    The iPod is useless until / unless previous owner deletes their iCloud account.

  • With the help of the child in the executable class

    I'm kinda stuck and don't know how to solve and could not find a solution online.

    I have a parent class and its children to the class. The child class only overrides a method, but not the run method. I want to compile the executable project, where the run method is called, but the class type is the child, not parent. How to do this?

    I tried three things, but all in vain:

    (1) in the build properties when I select start VI the run method of the parent, I get in the executable the parent, not the child's class class. It's logical. However, I couldn't find the option to use the child as a type's class.

    (2) when I add the run method of the child class and appeal to parents, I get two windows pop up. The run of the parent and the child method. Too many. Even if for the class child run method (see below the block diagram of a child, red run method's parent), I put not to show the façade when it is called in the properties of VI.

    (3) when I tried with a separate VI calling the run method of the parent class, but the class type is the child, I get the façade of this separate VI and the run method of the parent. See below (Blue class is child, red of parent).

    In both cases 2 and 3, I chose to put the checkbox 'See the façade when it is called' a FAKE, but still the front panels appear.

    Someone don't know either: i) the use in the executable version of the options to generate an executable when a different class method is used, or ii) when you compile an executable file with a certain start VI, to not show this starting VI?

    I understand if I say "you want to configure the RUN method of the class as 'start-up VI' in the EXE file, but it should run the RUN method for a child object"?

    If this is correct, your third approach is the right one. This new boot VI is often used as 'Splash Screen' that covers the task of a demon "spawning" for your application.

    You must simply close this VI once it's over. This can be done using VI server on its own front panel functions.

    hope this helps,

    Norbert

  • can someone help me with the addition of an account for child microsoft under a perintal account

    need of assistants with you that links child account to perintal for the child account is connected to Xbox live Microsoft account. He is asked to accept the terms of use on the Xbox site. She also asked inter in perinatal password and ID. The perinatal e-mail password was disassociated from the perinatal account. went to account.live.com account add kid account with parental account but how always to choose the option to add an account it takes me to a new page and I don, t know how to navigate the page. Can someone from Microsoft help me please with the addition of my son's account to my account.

    Hello

    Did you manage on behalf of your son using a parent account? You have already set up a parental control using the Windows parental control? If it isn't yet, please visit the link below on how to set up parental controls on your son's account by using Windows parental control:

    Bind the child account for a Parent account

    You can also download the installer of Windows parental control in the link below:

    http://Windows.Microsoft.com/en-us/Windows-Live/Essentials-home

    If you have any other questions, please let us know.

    Thank you!

  • How to display dynamic menu with the parent and the child using c# and sql server

    Hello

    Can you tell me

    What is menu given Dynamics example

    How can u use my dynamic menu added project in c#

    This menu is display with only the data from sql database.

    Menu with the help of a parent node and a child.

    check the element all in sql server and adding one by a dynamic menu.

    Hello

    Thank you for writing to Microsoft Communities.

    I recommend you post your query in the following forum.

    http://social.msdn.Microsoft.com/forums/en/category/SQLServer/

    Hope this information is useful.

  • How do you change the configuration of the drive in the bios with the master and slave?

    When I bought my Dell Dimension 8300 several years ago, I had installed a DVD player and a CD + RW drive and a floppy drive installed in the system.  Very early the system crashed and the OS discs had to be reinstalled.  The Tech is frustrated and accompanied me by changing the master/slave in the bios.  My DVD player is now the master and my CD + RW is now slave.  My cd burner and DVD player play, but they do not burn or import music.  I was wondering if the fact of change that might help the problem with the stopping cd burner just in the middle of a burn error 4450 or ((0X00001162).)  Thanks for your help.

    Hello
    If you are referring to the sequence of boot Yes the bios is where you want to change it see this url http://helpdeskgeek.com/how-to/change-boot-order-xp-vista/ ... . If you are referring to master vs. slave then that is something else see this url http://www.scribd.com/doc/96827/Master-Slave-Configuration access http://support.microsoft.com/default.aspx/kb/283658 Device Manager and check for the x red or yellow?
    itunes error code points? is this correct
    I do not think that it will make a difference to change the devices around, but there's enough information here to know what to do....
    I don't think that changing the order of stertup is going to fix this problem, but again once there is info here to address this issue...
    I would however check the device mgr if there are brands so you can set from the Device Manager and there is news for this
    I think that your problems stem from itunes, if that's the case, it would be best to see if this is the case, however, if the case is you are using windows media player let us know if this post can help solve your problem, please click the mark as answer check on this page THANKS AND GOOD LUCK

  • Problem with the rules after upgrade of the VM in foglight cartridge

    Hello

    There is a small problem with the rules after that I updated the VM cartridge level.

    In the default rules, I changed a few settings so that they will act as I need.

    However, each time I upgrade VM cartridge my rules are off and marked as backup.

    The question is: is there a way to upgrade the cartridge and keep my active rules after upgrading?

    Best regards

    Victor

    This is the normal behavior according to this KB article

    https://support.quest.com/SolutionDetail.aspx?ID=SOL105872&PR=Foglight

    105872 knowledge article

     
    • Title

      Backup rules fill in the dashboard management rule after Foglight upgraded
    • Description

      After that an upgrade of Foglight was conducted, several backup rules are created for rules that have been published before the upgrade. For example:

      Cluster VMW IO network
      Cluster VMW IO network (backup)

    • Resolution

      During the upgrade procedure, the FMS has detected that some of the original rules have been changed in some way. It copies the rules previously upgraded in backups, before trying to merge the contents of the update rule in the former.

      Assuming that the FMS works as expected, the rules of backup can be deleted. However, it is best to confirm this in the respect of the rules first before making deletions.

      When editing rules, particularly rules OOTB (out of the box), it is recommended to copy the original rule, disable the original rule and edit the copied rule. This should reduce the risk of the problem described in this Article.

    Golan

  • Synchronizing with the database for the relationship child parent - several associations is auto created

    JDeveloper version - 11.1.1.7.0


    I created a table say 'table ' have a primary key. Created a new ADF application and using business components of Table added table at my request.


    I then created another table in the database say 'TableChild' have a foreign key reference to a field in thetable '. In my application, I added the TableChild using business components of Table option.


    Associations and/or display of the links between the 2 tables will be created. Also tried to synchronized the OS using the option "Synchronize with the database", but it still reflects. Is it possible to automatically generate associations and post links and/or when a child table is added to the model.

    He is a well-known but in 11.1.1.7.0

    Check what to do with duplicate association which has all the information

    Timo

  • I bought for the Adobe Master Costume CS5.5 product packaging a few years back and today I get the following message appears: "Configuration Error: there was a problem with the license of this product." You restart the computer and restart production

    I bought the Adobe Master Costume CS5.5 product packaging a few years back and today I get the following message appears: "Configuration Error: there was a problem with the license of this product." You restart the computer, and restart the product. Error 213:19 ".

    That was before Adobe moved to a payment structure based on participants. I need to be able to access these programs. Please provide a solution to the problem.

    order to C:\ProgramData\Adobe & C:\ProgramData\Adobe\SLStore folders full reapply administrators property back on the C:\ProgramData folder and then add everyone.

  • I'm trying to uninstall Cs6 master collection and I can't because this information is displayed ERROR: DW040: the product '{E8AD3069-9EB7-4BA8-8BFE-83F4E69355C0}' is not installed. Cannot proceed with the uninstall. How can I solve this problem?

    I'm trying to uninstall Cs6 master collection and I can't because this information is displayed ERROR: DW040: the product '{E8AD3069-9EB7-4BA8-8BFE-83F4E69355C0}' is not installed. Cannot proceed with the uninstall. How can I solve this problem?

    Hi Paulov53532347,

    Try to use the cleanup for the same tool: use of the Adobe Creative Cloud cleaning tool to solve installation problems

    Let us know if that helps.

Maybe you are looking for