creating a resource? What is the proper way to store strings?

I have a workflow that works pretty well. It dynamically retrieves a list of groups based on a server I selected in a menu drop-down. Once the user selects a group, the workflow adds a (vm) member to this group on the selected server.

It uses the module for powershell do. However, the powershell module is quite slow.

This translates the user to wait some time before the workflow is ready to operate.

I thought maybe I could create a different workflow which, on a regular basis (perhaps all a few hours), retrieves the list of groups for each server that is in my drop-down list, and then updates a resource.

When the workflow runs, it looks like just the resource for a list of groups rather than he fetch manually everytime.

It's a stupid way of doing things or am I on the right track? If so, just trying to figure out how I can create a resource I can update dynamically on a regular basis.

Thank you!

I don't know what system you'll pick up groups.

If possible, I would try to implement this natively in vCO and check how fast it can be.

If it is slow, then the method you described would work. If what you get is an array of objects the easy way to share the value would be an element with an attribute with a type array of what your configuration object. You can then use that as your other attributes of workflow that connects to this attribute of the configuration element.

For the definition of the configuration item, you can do a config.setAttributeWithKey (attributeName, array);

If it is fast, so you can use it to set a property of presentation of default bound to your action.

Tags: VMware

Similar Questions

  • What is the proper way to remove a virtual machine in VMware Player?

    I created a machine virtual in VMware Player but not yet installed the operating system. I would like to delete the virtual machine and start from the beginning of the process. What is the proper way to remove a virtual machine in VMware player?

    Just curious, have you even looked in the help file in VMware Player?  It tells you how to remove a Virtual Machine.

    With the Virtual Machine off, right-click in the Virtual Machine library and select: remove VM disk

  • What is the proper way to clean the LCD on my HP Pavilion g7-1173dx?

    What is the proper way to clean the LCD on my HP Pavilion g7-1173dx? This is my first laptop and I'm in love, but the screen must be cleaned and I don't want to spoil it. TNX

    Hello

    Please follow these tips:

    http://Lifehacker.com/179659/how-to-clean-an-LCD-monitor

    http://www.WikiHow.com/clean-a-laptop-screen-with-household-products

    Concerning

  • What is the best way to store the RCS for an insert/update in this rec

    Oracle on Win 64 non-conteneur 12.1.0.2

    When a record in one table is inserted or updated, what would be the best way to store the RCS for this record in this folder.

    I thought of a line after trigger, but did not know if this trigger to store the current_scn would still fire that trigger again (recursive trigger).

    Someone at - he a good idea of what the best way is to do?  The devs don't want to store the pk and the SNA in yet another table...

    Yes, row_dependencies would be the best way to go.  But mgmt doesn't recreate all tables for this.

    3rd party applications retrieve data from tables (all data).  We are looking for a way for them to just pull what is new or updated updated since their last sweater.

    I suggest that you try again and give all OF THE REQUIREMENTS.

    You have rejected ANY answer given and he justified using 'hidden' on what knowledge management or the devs want or do not want to. Stop making us guess what are the requirements and constraints. If you want a real answer then tell us ALL the news.

    When a record in one table is inserted or updated, what would be the best way to store the RCS for this record in this folder.

    Solomon answered repeatedly. If you want to add a column to a table to store the then "best" SNA is to let the Oracle to do this for you automatically by using the DEPENDENCY LINE.

    As he says also re-create the table to add this clause will be MUCH MORE EFFECTIVE that everything THAT you can do it manually. It will be also more accurate because Oracle will fill the value ORA_ROWSCN with the SNA at the time the line was committed. You, as long as user, can't fill a column in function when a line is engaged since real VALIDATION belongs to a transaction, not the line or the trigger that you use.

    Yes - there are two drawbacks to this method:

    1. you need to re-create the table

    2. you cannot add an index to this "hidden" column

    The devs don't want to store the pk and the SNA in yet another table...

    Then? Who cares what the devs want to do? You want the BEST solution? Next, you will need to put aside personal preferences and determine what is the 'best' solution. Why it is important that certain dev wants to do this or not?

    OK, the problem of biz is now, 3rd party external users are an all-wheel drive large number of tables in the database via the API that we wrote.  That was obviously interrupted OLTP during the day.  To reduce to the minimum, we want for them just to extract data that has been inserted/updated since their last sweater.

    It is the definition of a "replica" DB Then why don't you consider a real replicated DB? You can use DataGuard and have replicated DB which is read only that can be used to generate reports. Oracle does ALL the work to keep ALL the tables in sync. You and your developers do NOTHING!

    We thought that store the RCS higher their last sweater would allow the API to extract only data with YVERT higher than their last data pull CHN.

    OK - except you keep rejecting solutions actually do. Ask you questions about the SNA stored in the same table, but then reject the solution that does this. And then you add your "devs" don't want to store the info in a new table either.

    Then your solutions must ONLY use the replication or Log Miner. The REDO logs have all changes, if you want to extract yourself. Replication (e.g., DataGuard) will use these logs for you to maintain a replicated database.

    We thought about it, but recreate all tables in production with ROWDEPENDENCIES as well as dealing with CF and other dependencies idea this was shot.

    Well you NEVER mentioned you "thought that" and rejected it. And you NEVER mentioned anything about FKs and other dependencies. What is FKs and other dependencies which prevents this working solution? Tell us! Give us ALL the information.

    Wouldn't a trigger AFTER LINE capture the commit YVERT?  Or is after really not after validation?

    No - a trigger has NOT one commit. A trigger runs as a step in a transaction. Validation applies to the entire transaction. Until you, or Oracle, issues a commit, there is NO "committed SNA" to be stored as ORA_ROWSCN.

    You can easily see that for yourself. Create a simple table with dependencies of the line and then update two different sessions.

    create the table emp_scn rowdependencies in select * from emp where rownum<>

    Select empno, emp_scn ora_rowscn

    Update emp_scn set work = 'b' where empno = 7499

    commit;

    The first SELECT statement will show you that each row has the same SNA.

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,70622201

    7521,70622201

    Now, do the update (but no commit), then SELECT it

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,

    7521,70622201

    Where is the value of 7499? This session will NOT see a value for the changed lines in the current transaction. Other sessions will still see the old value.

    Now do the validation, then SELECT

    EMPNO, ORA_ROWSCN

    7369,70622201

    7499,70622301

    7521,70622201

    7499 now has a new and different value than the other lines. It will not be this new value until the validation occurs.

    Yes, row_dependencies would be the best way to go.  But mgmt doesn't recreate all tables for this.

    Well, you got the answer you want. You ask the best way. Now, you say that you were told the best way. But now you don't like the answer.

    How is it our fault? Your question has been answered wasn't she?

    Here are the facts:

    1 oracle creates a history of changes - the REDO log files

    2. you can use Log Miner to extract these changes

    3. you can create your own change log by adding a log file of MV to your table.

    4. you can then write a custom code to use this MV log file to determine which rows to "reproduce".

    So far reject you all THE POSSIBLE solutions.

    Accept it or change the requirements to allow one of the solutions proposed to be used.

    Personally, if I HAD to use a customized solution, I would use a MV journal to record the ROWID of the lines that have changed (for tables ROWID cannot be changed). I would then extract the appropriate lines by pulling on the lines corresponding to these row ID.

    Even that has problems since a line can be changed several times and children lines can also be amended several times - these questions FK you mentioned.

    I suggest you read this entire thread on AskTom a dozen years ago. It addresses ALL these issues.

    https://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:16998677475837

    Then in your next reply on this topic give us a summary of where some things with your question and what help you further expect.

  • What is the best way to store my Canon MX922? I'm not going to use it for several months (6 +).

    I don't use my printer for many months.  What is the best way to keep?  Leave the ink cartridges in the printer?  Get out them?  Store cartridges almost nine in a bag made of plastic?

    Hi mmosher,

    If your PIXMA MX922 should not be used for an extended period of time, please put your PIXMA MX922 using the power button on the unit.  It will be a "cap" of the ink tanks, so they will be ready to use when you print with your PIXMA MX922 once again.  No further action is required.

  • What is the proper way to cut this?

    I am newbie, took a course of DW, but the info I have on FW is a self-taught of tutorials

    by John Wylie, Matt Stow, etc..  on the adobe Web site.  Created my first Web page comp

    in (attached) FW and try to bring it in DW, but having a lot of trouble trying to figure how correctly

    cut the part of the banner so that I don't lose the gradient of the page, and I can't use FW to generate 'up' and 'down '.

    State of the navigation buttons (hover will be coded in DW).

    Is there a decent, not overly complex slicing method so that I can bring to DW?  Or have one created an impossible

    design by putting sailing areas along the y-axis y - co even the logo?

    This forum has been fabulous!  Thanks to everyone who helped me!

    I want to do ALL my coding in Dreamweaver. In regards to the AP, it's the only way I know how to do it :-) I am by far not an expert on CSS, I know enough to do what I have to do.

    Here is the 2nd part: http://tutorials2go.com/movies/DWCS4/layout2.htm

  • What is the proper way to add behaviors to text?

    I seem to have bad to add behaviors correctly.

    What I want to do is to select a few words of the text and apply a behavior, particularly the behavior of the browser window when a user clicks on the selected text. I got this working in what I know is not the right way. The only way I can make it work is if the text of the link also has a a href link set up (using the property inspector) pointing to this page. Now if I simply select text and go to there to add behavior through the tag Inspector panel many of my choices are grayed out. I'm not great code-savy, but I do not understand that these behaviors should / can be applied to the tags?

    You can see some examples of what I'm talking about you here: http://www.philasecurities.com/luncheon_meetings.html . In the lunch calendar, click on «more...» "links and a new, small window should open. 

    How should I apply these correctly?

    Thank you

    John

    Pop-up in Dreamweaver (behaviors panel)

    1 insert an image or type text.

    2. Select and go to the properties panel link field.  Locate the file or type the full URL (http://example.com).

    3. go to the behaviors panel and click on the plus sign to add a new behavior.

    4. Select opens the browser window.

    5 browse to file or type the URL (Yes, a 2nd time).

    6 adjust the height, width, and other optional attributes for your popup window. (See link below for more details)

    http://help.Adobe.com/en_US/Dreamweaver/CS/using/WSc78c5058ca073340dcda9110b1f693f21-7b07a .html

    7. click on OK.

    8. check that the triggering event for the behavior is onClick.  If this is not the case, click the box to view other event options.

    9 IMPORTANT!  Back in the properties panel and replace the first URL in the link with javascript :() field that is the primary link in a null link.  If you do not do this, this link will open twice: once in the shortcut menu, and then in the parent window.

    Save your page and preview in browsers.

    PS. It takes more time to explain all these steps than it does to make.

    Nancy O.

    ALT-Web Design & Publishing

    Web | Graphics | Print | Media specialists

    http://ALT-Web.com/

    http://Twitter.com/ALTWEB

  • What is the proper way to create a user who can connect through the Console, but not through the VMWare Client?

    I did the following steps:

    1. create a user

    2. assign the Group root (remove all the other group of the user)

    What's my not just?

    Thank you!

    It is the way to do it.   Either you must be part of the root group to be given to the role admin (or a bespoke) at the level of the host to access the DCUI.

    If you create a user is added to the root group, but is assigned all permissions (either singularly or through a group) on the host then, then the user will be able to connect to the DCUI but not the client vSphere (or any other method of the API).

  • What is the best way to store the time of appointment in the calendar

    I use apex 5 universal theme.

    Oracle 11gxe.

    I need apex calendar to view the calendar...

    Do I need to use the ekinitech calendar plugin

    Or is it possible to implement

    http://fullcalendar.IO/

    I'm not aware of the java scripts, but I think I can try

    Any guidance appreciated and thank you

    Hi pauljohny100,

    There is an easy way to implement a FullCalendar.

    Take a look: https://apex.oracle.com/pls/apex/f?p=90561:1

  • What is the best way to remove variables?

    I need to remove several variables to repository and the initialization block that contains.

    They are not referenced in the company or the presentation layers.

    What is the proper way to remove them?

    Thanks in advance for any response.

    There is no set procedure for Oracle/Siebel.

    The RPD does not hurt if you follow or don't follow any procedure.

  • The right way to store the results of the query

    Hey wizards Oracle,.

    I have a few questions that take a long time to run. Given that the results of these queries change only once a day, I will execute queries every morning and store their results in a table.

    I was going to serialize them in chains to the CSV format and then store them as CLOB. But shit, Oracle is a data table, storage system! This is reinventing the wheel within a wheel.
    Then I thought about creating one table per query would be the right way to store their results. But ordinary tables data recovery would be slow, because I would need to create an additional of ORDER_BY column to maintain the order of the results of the query.

    It seems that there is a way to store varrays in the LOB columns, but it does not seem to be appropriate.
    There may be a caching mechanism that could help?

    Does anyone know the proper way to store the result of a query?

    What you describe is a reinvention of the materialized views.
    Have you considered using them?

    ----------
    Sybrand Bakker
    Senior Oracle DBA

  • What is the best way to create a limited user account?

    I'm trying to set up a user account which only allows access to the media, optical drive (read-only, if possible), programs 3 cards and records in a folder that is not visible to this account. What is the best way to go about this?

    Thank you!

    Hello

    You can check the links that has information about the types of accounts of user below.

    Types of user accounts: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ua_c_account_types.mspx?mfr=true

    Overview of user accounts: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/usercpl_overview.mspx?mfr=true

    How to create and configure user accounts in Windows XP: http://support.microsoft.com/kb/279783

  • What is the best way to create a backup external to the files from my laptop?

    What is the best way to create a backup external for my laptop files which may be about 40 GB +.

    There are a few utilities in Windows that will help you to back up data. Consult the following link:

    http://www.Microsoft.com/athome/Setup/backupdata.aspx#fBid=UkLRcjvJbN_

    There are many third party tools that will help you to do so. Here's a free:

    http://www.ssesetup.com/SDB.html

  • What is the best way to create a line with triangles at each end, as in a timeline? (See attached example).

    Timeline.JPG

    Sorry for the low resolution. I would like to create a line with a triangle at each end, similar to the one illustrated. What is the best way to achieve this using InDesign? I will create three or four and we will add the month abbreviations for years.

    I'd probably use the online tool to create the line. You can hold the SHIFT key to make the straight line. For triangles, you can either use the polygon tool (shift click to set the number of sides) or you can create a square with the rectangle tool (hold down the SHIFT key while dragging to make a square) and use the pen tool to remove a corner of the shape, creating a triangle. I generally prefer the polygon tool.

  • What is the best way to create a form on my page layout of Muse for an event where the person is able to register and pay for the event using Business Catalyst?

    I need to create a Web site for a conference and I need to be able to have participants at the same time register you for the event on the website, but also paid for the event.  What is the best way to do it?  I am brand new to Business Catalyst and of course the customer must site upward and yesterday running.  So, if I could find quick assistance to implement it quickly, I would be very happy!

    Thank you!

    Hello

    Please take a look at these tutorials,

    Customizations made for the events module

    Let the site visitors sign up for an event

    Once configured, you can add modules in Muse and publish business catalyst. As shown in this article

    Add features of Business Catalyst to your Muse sites

    Easily add Business Catalyst modules to your Adobe Muse Web sites.

    Let me know if you have any question.

Maybe you are looking for

  • OfficeJet Pro 8630: hp 8630 printing Off Center when copying

    Printer prints well out of the computer, but prints off the coast on one side, when copying without worrying if the paper is flat or powered by the ADF.  Can't see obstructions.  Yet once, print very well when printing emails, downloads etc.  Only of

  • CloudBook HD - What is a real SSD or one of these readers MEM?

    I'm looking to get one of the Acer Aspire One Cloudbook 14 machines. But I'm eager to find detailed information on the drive which provides 64 GB internal memory. I currently have a HP Stream 13.3 and the "flash player" is not a true SSD drive. It is

  • When I try to use the send to compressed (zipped) folder option I get an access denied message

    When I try to use the send to compressed (zipped) folder option when I right click on a file I get the following message Unable to complete the operation. Access is denied. However I do have permisions complete on the file and I am the only user and

  • MS Word - synonymous disappeared - help!

    I use the synonym feature in MS Word often and rely on it to make my sound documents a little smarter I really am.  Since the beginning of this week, I have not been able to view synonyms in Word or Outlook.  I used the same sentence as a test on dif

  • Complete download software pop up

    I get this popup when I turn on my computer. It is on the lower right side of the screen on the system tray and it says to download the full software. You then have the option to "install now" or "install later". I'm afraid to click on it. I read som