Failed to create a dynamic group

Hi all.

Today, I created a few dynamic groups for a new dash I think.

These groups dymanic says all preparations of data available in each cluster I have in my environment.

The rules of dynamic groups database is like this:

[ALL] [Descendants of] [Contains] [Cluster1]

[Datastore] [Total number of hosts] [more] [1]

These two rules return all data warehouses that are part of the 'group 1', and are visible to more than 1 guest.

so far everything works beautifully.

My problem is that one of my groups, lets call it 'Cluster 10', this does not work,

Although there are data warehouses in this group to each another bunch of mine.

also - when I try this rule of thumb:

[ALL] [NAME] [Contains] [name datastore]

I still get no items selected by the preview.

I check under "Overview of the environment", I see data warehouses that I can't come up with the basis of rules,

"and I checked 'State Collection' and status of the Collection" are (all green) work orders

Grateful for the help here

Thank you

iQuad.

mm sounds like something's screwed up.

Is he still collect data on these data as in metrics stores are all to date?

I might delete data for vCOPS warehouses and see if they are picked up, they should and it would be a new id of the object. You should be able to remove them from the presentation of the environment in the custom user interface.

Tags: VMware

Similar Questions

  • create a dynamic group for all virtual machines

    I would like to create separate dynamic groups for all my Windows virtual machines and physical machines of my Windows.  Is it possible to do it via regular expressions?  It is not granular enough to create something like this.  We have vROps that collects a large number of settings of virtual machines as its CPU usage, use of memory and use of the network to name a few.  If I install Hyperic on those virtual machines it will collect the same measures and I'll have to duplicate the data in vROps.  So I would like to have a separate profiles for Win32, CPU, physical disk on file server, etc., for virtual machines and physical machines.  I was going to try using dynamic groups, but I don't think that Hyperic will be able to handle this.  If you have any suggestions or knowledge on this operation through dynamic groups that would be great.

    Thank you.

    In UI Hyperic access the platform in platform type choose Win32 and press the green icon. You will see all the windows.

    Now select all platforms and press the 'Group' button > add to the new group

    Good luck

  • Failed to create a dynamic action ALERT to build a Select list when selecting a particular value.

    Hi everyone, this should be so easy, and yet I'm stuck.

    I have a form with a P110_VESSEL_ID element.   This article is a list of selection.   It is based on the query:

    Select distinct v.vessel_name, v.vessel_id

    of ships v, frequent_fishermen ff

    where ff.dea_permit_id =: G_PERMIT_ID and

    FF:vessel_id = v.vessel_id

    UNION

    Select v.vessel_name, v.vessel_id

    of apex_collections v, vessels

    where collection_name = "SUPVES_COLLECTION" and

    a.C002 = v.vessel_id

    If the user decides from the values in the selection list query, they can opt to SELECT all THE VALUES.  This SELECT all VALUES is a TEXT of ITEM POST on P110_VESSEL_ID.

    < a id = "popVessels" href = "#" > < font color = blue > select all < /a > ships

    It all works very well.

    The problem is that when the user selects a boat name = "UNKNOWN" and it is corresponding to the value of vessel_id, I want an ALERT to appear indicating that they should check that the boat is UNKNOWN and no one's any ship.

    I created a dynamic action

    event = change

    Select type = item

    Item = P110_VESSEL_ID

    Real ACtion #1 is the ALERT.

    Currently, I have no other logic, but can't even get this working.  All thoughts.   I also tried the SELECT TYPE = jQuery Selector = select [name = "P110_VESSEL_ID"], but that does not work either (although I am not sure if the value must be P110_VESSEL_ID or static VESSEL_ID name).

    Any help is appreciated.

    PS. the page is not submitted when the ship is changed.  There are other data that should be in this region and others and many validations run when submit to submit would not be an option.

    Thanks again,

    Karen

    Is (BOAT = UNKNOWN) a single value with a single vessel_id? If Yes and for example if the vessel_id is 99, then proceed as follows:

    Add an expression "JavaScript" in your dynamic action.

    In the Condition value, enter:

    this.triggeringElement.value == "99"
    

    -Jeff

    And I agree with Nicolette, there is something wrong with some other DA who is at the origin of the DAs after that does not work.

  • Newbie dynamic group by clause

    Example of
    create table test (bleaches numeric (6.0))
    , DMonth numeric (2.0)
    , Goalnumber numeric (2.0)
    (, Objnumber numeric (2.0));

    insert into test(awhite,DMonth,Goalnumber,Objnumber)
    values (5,6,1,1);
    insert into test(awhite,DMonth,Goalnumber,Objnumber)
    values (8,6,1,2);
    insert into test(awhite,DMonth,Goalnumber,Objnumber)
    values (12,6,2,1);
    insert into test(awhite,DMonth,Goalnumber,Objnumber)
    values (16,10,2,1);
    insert into test(awhite,DMonth,Goalnumber,Objnumber)
    values (4,10,2,1);

    ===========================
    I need this to be a query with a parameter

    Select SUM (Awhite) Rousseaux
    DMonth
    CASE WHEN & groupbyobj < 2 THEN
    TO_NUMBER('99')
    ON THE OTHER
    Goalnumber
    END Goalnumber
    CASE WHEN & groupbyobj < 3 THEN
    TO_NUMBER('99')
    ON THE OTHER
    Objnumber
    END Objnumber
    OF the test
    Goalnumber, Objnumber, DMonth GROUP
    ============================
    Thus, when the groupbyobj = 3, I want the output to look like
    ROUSSEAUX DMONTH GOALNUMBER OBJNUMBER
    ---------- ---------- ---------- ----------
    5 6 1 1
    8 6 1 2
    12 6 2 1
    20 10 2 1
    ==============================
    So when the groupbyobj = 2, I want it grouped by GOALNUMBER
    ROUSSEAUX DMONTH GOALNUMBER OBJNUMBER
    ---------- ---------- ---------- ----------
    13 6 1 99
    12 6 2 99
    20 10 2 99
    So when the groupbyobj = 1, I want it grouped by DMonth
    ROUSSEAUX DMONTH GOALNUMBER OBJNUMBER
    ---------- ---------- ------- --------
    25 6 99 99
    20 10 99 99

    I ADDED the above '99"in the output above. I couldn't get my exit request that.

    QUESTION - How can I create a DYNAMIC group by clause according to the parameter
    (Groupbyobj) Selected?

    TIA
    Steve42

    Something like that?

    SELECT SUM(Awhite) SWhite,
           DMonth,
           Objnumber,
           Goalnumber
      FROM (Select AWhite,
                   DMonth,
                   CASE WHEN &groupbyobj<2 THEN 99 ELSE Goalnumber END Goalnumber,
                   CASE WHEN &groupbyobj<3 THEN 99 ELSE Objnumber  END Objnumber
              FROM Test
           )
    GROUP BY Goalnumber,Objnumber,DMonth
    
  • Failed to create FT logging with grouping of NETWORK cards

    I use vSphere vCenter 5.1 and 5.1.

    I create a port group of kernel VM on a new vSwitch, assign two NICs used on my ESX Server and logging FT. I have then add a second port VM kernel group to the two network cards and also assign FT logging. When I do this FT Logging the first port of kernel VM group is disabled. If I then manually enable FT gones then a second by logging on the first group of ports of kernel VM mode off.

    The same thing happens when I create 2 vSwitches, assign 1 NIC to each of them and assign the FT logging.

    I wanted to create my FT Logging predisposees in this way to match what I've done with vMotion and VM Network.

    I do something wrong or you can have a group of ports per server for recording of FT? Please notify.

    Thank you

    Multi-NIC VMotion is a new feature in vSphere 5.0. Multi-NIC FT has not yet been introduced. You mentioned trade Multi-NIC VM, but it is not possible either. While you can have two interchanges to connect to the same VLAN they must have unique names and a VM NIC may connect only to a unique name.

    What advantage do you hope to achieve with Multi - NIC FT? If the goal is more throughput 10G is the only option currently. If the lens is better traffic load balancing so that you could watch LACP on the vDS.

  • [Rebuild] - calling script to rebuild a dynamic group, anyone?

    OK, Scriptsmiths - one of you have a script that you use to trigger a "Rebuild" dynamic group programmatically membership?   The builtin scheduled task that runs nightly assessment and reconstruction - lists an empty value where a script would be..., and although I don't know that there must be a way to script to trigger the scheduled task to run - I don't want to rebuild all the groups.  Just one or two mammoths groups who choke during the night.    I have a very large group or two, with 50 + members - and the last Thursday night, after the general reconstruction, she had only 13 K users in tow.  So I had 37K upset users overnight.  It was as if each of them trying to OCS me at the same time.   I start the GUI, I found the group, click [Rebuild] button and a few thousand seconds later - happy users.

    An idea where to start with a script that allows you to trigger a regeneration of the group from the command line without having to evaluate/reconstruction of the DG or any script existing in the game by an admin of the LRA anywhere - all at the same time?

    TIA

    OMG this captcha is killing me - it looks LIKE a STORE FRONT FOR ME!

    Hello, Dyannic.

    I just tried a code of this old post using v7.0.2 and it seems to work perfectly for me (with a minor modification):

    $Constants = New-Object 'System.Object'
    $Constants | Add-Member -MemberType NoteProperty -Name EDS_CONTROL_FIX -Value 4
    $Constants | Add-Member -MemberType NoteProperty -Name EDS_CONTROL_CHECK_POLICY_COMPLIANCE -Value 5
    $Constants | Add-Member -MemberType NoteProperty -Name DGPolicyGUID -Value "84C1A76B-2A6B-4f4b-837A-22D2CCAC777A"
    $Constants | Add-Member -MemberType NoteProperty -Name ADS_PROPERTY_CLEAR -Value 1
    
    $Group = [ADSI]"EDMS://CN=Test Dynamic Group,OU=Business Unit1,DC=qsftdemo,DC=com"
    $Group.PutEx($Constants.ADS_PROPERTY_CLEAR, 'member', $null)
    $Group.SetInfo()
    $Group.InvokeSet('Control', $Constants.EDS_CONTROL_FIX, $true, @($Constants.DGPolicyGUID))
    $Group.InvokeSet('Control', $Constants.EDS_CONTROL_CHECK_POLICY_COMPLIANCE, $true, @($Constants.DGPolicyGUID))
    $Group.psbase.Invoke("CheckPropertyValues")
    
    
    

    If ' $Group.InvokeSet () "continues to fail for you, try instead" $Group.psbase.InvokeSet ().

    Good luck!
    Shawn.

  • RW-00000: cannot write in the following directory. Please check the permissions. Failed to create the context to the/tmp file

    Hi, I'm under RapidWiz 12.2.0.50 to make a R12.2 installation on a platform for x 86-64 Oracle Linux 7.1.

    I get the error message

    RW-00000: cannot write in the following directory. Please check the permissions. Failed to create the context to /tmp/11061511/lab3_DEMO1_db.xml file

    However I've looked at what my directory/tmp is completely open (wise authorization), as well as the subdirectory 11061511 under

    lab3-nms: / > ls - al

    drwxrwxrwx. 14 root root 4096 Nov 6 15:22 tmp

    lab3-nms: / tmp > ls - al

    Total 16

    drwxrwxrwx. 14 root root 4096 Nov 6 15:22.

    drwxrwxrwx. 19 root root 4096 Nov 6 14:19...

    drwxrwxrwx 2 root root 25 Nov 15:11 6 11061511

    drwxrwxrwx. 2 root root 19 6 Nov 14:18 .esd-0

    drwxrwxrwx. 2 root root 6-9 Oct 23:16 current unix

    drwxrwxrwx. 2 root root 17 6 Nov 15:11 hsperfdata_root

    drwxrwxrwx. 2 root root 14:18 Nov 94 6. ICE-unix

    drwxrwxrwx 2 root root 23 6 Nov 14:18 ssh-KQeDztQLkQHj

    drwxrwxrwx 3 root root 16 6 Nov 14:18 systemd-private-OgJMdJ

    drwxrwxrwx 3 root root 16 6 Nov 14:18 systemd-private-S5pkDq

    drwxrwxrwx 3 root root 16 6 Nov 14:18 systemd-private-x5Iry2

    drwxrwxrwx. 2 root root 6-9 Oct 23:16. Test-unix

    -rwxrwxrwx 1 root root 11 6 Nov 14:18. X 0-lock

    drwxrwxrwx. 2 root root 24 6 Nov 14:18. X 11-unix

    -rwxrwxrwx 1 root root 11 6 Nov 14:18. X 1-lock

    drwxrwxrwx. 2 root root 6-9 Oct 23:16. XIM-unix

    lab3-nms: / tmp/11061511 > ls - al

    Total 16

    drwxrwxrwx 2 root root 25 Nov 15:11 6.

    drwxrwxrwx. 14 root root 4096 Nov 6 15:22...

    -rwxrwxrwx 1 root root 8529 6 Nov 15:22 11061511.log

    any ideas what the permission problem?

    Thank you

    Jim

    Found the problem and it's nothing to do with users, groups, and permissions of files (tmp or anything else besides!)

    The problem was that I had not put the sysconfig according the upgrade installation Notes & R12.2 for Linux x 86-64 ( note 1330701.1 )

    I guess the bum steer, which gives install them quick - is indicating that the question is a problem of permission of the files in / tmp, when it is not really!

    The only thing I can think is that it uses sysconfig content to add the name of host or domain, the file name, he tries to put in / tmp.

    hope this helps

    Jim

  • Dynamic group membership query

    Hello

    I'm looking to set membership in a group for an existing installation of EM.

    I don't want to use administrative groups that we have really not state of the lifecycle or other properties of the set target, and I don't want to put everything right now (we have several targets on single servers, over 100 on 1 Server).

    Therefore, I was interested in the use of dynamic groups for DB services, e.g. dynamic group DB_APP1 where target name was like '% APP1.

    I do not see this property in the dynamic groups, rather dynamic group properties are determined by the membership criteria (e.g. target =, on the host type = y)

    vs

    The normal groups where I can search for all the targets called "APP1%.

    is there any criteria of dynamic search by name of the target in dynamic groups?

    Thank you

    Looks like we don't have direct Option.

    http://docs.Oracle.com/CD/E24628_01/doc.121/e25353/whats_new.htm#EMCON142

    2.2.3.1 dynamic groups

    Note:

    This feature was new in Enterprise Manager Cloud Control Release 2 (12.1.0.2).

    Dynamic groups to create groups based on membership criteria. Criteria for membership is based on the properties target as target type, the life cycle State, Department, target version and so on. Targets whose properties match the criteria of a dynamic group are automatically added to the dynamic group.

    Dynamic groups facilitate management groups. Administrators do not have to define the criteria for membership in the group only once and Enterprise Manager automatically adds or removes the target to or from the appropriate dynamic group.

    But,

    We can choose based on observation, while adding, if mention us the search string in the comment as "APP1" and mention that the same comment of the dynamic group will help.

    Concerning

    Krishnan

  • Failed to create the object: _vCACCAFEEntitiesFinder

    Trying to getbusiness groups leave a host given vCac and using the method of getbusinessgroups _vCACCAFEEntitiesFinder... but series workflow in error



    Failed to create the object: _vCACCAFEEntitiesFinder: class ch.dunes.vso.sdk.DynamicWrapper cannot access a member of the class com.vmware.o11n.plugin.vcac.model.inventory.EntitiesFinder with modifiers "private."


    How can we solve the above error?

    Hello

    It seems you are trying to instantiate a new instance of the vCACCAFEEntitiesFinder class using code similar to the following:

    var host = ...; // vCAC host object
    var ef = new vCACCAFEEntitiesFinder(); // instantiate vCACCAFEEntitiesFinder
    var groups = ef.getBusinessGroups(host); // retrieve business groups
    

    You can't do that; vCACCAFEEntitiesFinder is a singleton script and cannot be instantiated. You must use the name directly as in the following code:

    var host = ...; // vCAC host object
    var groups = vCACCAFEEntitiesFinder.getBusinessGroups(host); // retrieve business groups
    
  • Error: The database file location: [INS-32012] failed to create the directory.

    Hello

    I have a problem with the installation of database 11 g 2 on OL5.

    Error:

    Location of the database file: [INS-32012] failed to create the directory.

    Although

    drwxr-xr-x 2 root oinstall 4096 Apr 9 17:56 oradata

    drwxr-xr-x 3 755 oinstall 4096 Apr 9 16:27 products

    U01/app/oracle/a 755 permission

    Thank you

    Abhishek

    chmod-r 755/U01

    chown R oracle: oinstall/U01

    the second command change the user and the group owner Of/U01 (including all subdirectories and files) for oracle and oinstall respectively.

    HTH

    Tobi

    Tobi & #39; Oracle DBA s & amp; Blog of UNIX

  • Failed to create ramdisk error during upgrade (the Scratchconfig does not work?)

    I'm trying to use Update Manager to update ESXi 5.1 to ESXi5.5. I get the error "Failed to create a virtual disk of size 333 mb to store the upgrade image."

    The ESXi has lots of disk/ram left.

    I did some research and discovered a problem where the scratchconfig was pointing to a nonexistent device. I put the scratchconfig and restarted.

    After the reboot into the new folder, I saw various var, core, newspapers etc. of the files, but I still get this cannot create the ramdisk error when you try to upgrade.

    I tried various items/vmfs/volumes/datastore uuid/.locker-host and/vmfs/volumes/datastore uuid/scratch, both with the same result.

    I have confirmed that I can write in these new files.

    Whenever the newspaper said ERROR ', 'SPACE_AVAIL_ISO', expected '349773754', test found '0' despite the scracthconfig.»

    What I am doing wrong?

    It turns out that the other group had created another administrator account and deleted the administrator since the root account access.

    /etc/VMware/hostd/authorization.XML indicates that the root user has lost the role of 'administrator ':

    HA-folder-root

    10

    fake

    true

    -5

    root

    When ACEDataRoleId is set on '-1' this indicates the administrator. " In your case, the role has been set to-5 which is not a role defined and probably hardened with nothing to do.

  • I can't create the local group on vSphere Client 5.5

    Hello, Hello all!

    I'have the vSphere Client 5.5 and I cannot create a local group on the tab "local users and groups. When I create a group shows me an error and I can not create it. This is the error that I have:

    Call "HostLocalAccountManager.CreateGroup" of object "ha-localacctmgr" on ESXi 'IP' failed.

    I am connected to the root.

    I saw in other forums that it is impossible to create groups due to the last version is only possible in the Web Client that comes integrated with vCenter.

    In the old versions is possible, but when I open a session in vSphere Client 5.0 for example, I have to update version and I can't use the 5.0 version.

    How can you help me?

    Thanks and greetings

    PD: Sorry for my bad English

    Hi Danisb3,

    It seems that local users is now the recommended around work (see link above), but as you said if you have vCenter you can add groups

    ESXi 5.1 and later versions does not support local groups. However, Active Directory groups are supported - is it possible to connect to AD?

  • «FAILED: failed to create a snapshot of the source volumes VSS.» Error code: 2147754758 (0 x 80042306). "Down to 1% with autonomous converted 5.5

    Hi all

    I'm trying to convert a physical Windows 2008 R2 (SP1) virtual, using Vmware vCenter Converter Standalone version 5.5 build 1362012, it fails at 1% (after around 40mins) with the following message

    Failed: Failed to create a snapshot VSS of the source volumes. Error code:

    2147754758 (0 x 80042306).


    Windows systems has some LUN (4 x each various size GB) San, being the GUID (GPT) Partition Table.  I went through the wizard as a general rule, by selecting "edited on the machine", a player selected vmware "vmware workstation" or another vmware virtual machine destination 6.0.x and the location of the target being a LUN with 500 GB of space.

    Now for the data to be copied I selected 3 LUN (on a database resides) and put the 'Size' option (but I tried to keep the size of the various passes) to save space.


    Looking through the logs, I see the following errors

    Server-convert-VMware - 1.log

    2014 01-16 T 19: 42:37.371 - 07:00 [info 08696 'Default'] [serviceWin32, 416] Server vmware-converter service started

    2014 01-16 T 19: 42:51.006 - 07:00 [08696 info "Libs"] username [ADS] Get failed: 1332

    2014 01-16 T 19: 42:51.006 - 07:00 [08696 info "Libs"] [ADS] subtle failed: 1312

    2014 01-16 T 19: 42:51.115 - 07:00 [info 08696 'Default'] [user, 874] successfully authenticated the user administrator of the local computer (by using pipe)

    2014 01-16 T 19: 43:38.898 - 07:00 [10116 info "Libs"] username [ADS] Get failed: 1332

    2014 01-16 T 19: 43:38.898 - 07:00 [10116 info "Libs"] [ADS] subtle failed: 1312

    2014 01-16 T 19: 43:39.023 - 07:00 [info 10116 'Default'] [user, 874] successfully authenticated the user administrator of the local computer (by using pipe)

    2014 01-16 T 19: 43:39.647 - 07:00 [info 07628 "ThreadPool"] Thread has enlisted

    2014 01-16 T 19: 44:26.152 - 07:00 [08696 error 'Ufa.HTTPService'] cannot read the request; flow: io_obj p:0x0141b84c, h:-1, < tube "\\.\pipe\vmware-converter-server-soap" >, < pipe "\\.\pipe\vmware-converter-server-soap" > >, error: class Vmacore::TimeoutException (operation timed out)

    2014 01-16 T 19: 47:32.

    Worker-converter-VMware - 1.log

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 "Default"] disk number 1 has been ignored due to errors when reading partition table

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 "Default"] disk number 1 has been ignored due to errors during playback of dynamic disks header or LDM database is corrupt

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] [MoveActiveDiskIfNeeded] GetFirstBootDisk failed, error mntapi: 176

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] score: Invalid magic number sector.

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] score: Invalid magic number sector.

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 'Default'] [PopulateCapabilities] based on the Volume of cloning has been disabled due to: no volume is recognized >

    ..

    2014 01-16 T 19: 47:34.323 - 07:00 [warning 07248 "Default"] Partition: ERROR: MBR sector must be present and valid initialize to GPT disk.

    2014 01-16 T 19: 47:34.354 - 07:00 [info 07248 'Default'] signature of disk found 80a2884a-05e9-4c1b-81-3d-35-1b-a3-6c-4b-bc, drive to 225981112, sectors 512 sector size size

    2014 01-16 T 19: 47:34.354 - 07:00 [info 07248 "Default"] Partition found type Efi system / single 4078aaff-430e-4825-bf-07-67-c6-ab-a1-87-3f

    ...

    2014 01-16 T 19: 47:37.365 - 07:00 [info 07596 "ThreadPool"] wire removed from the list

    2014 01-16 T 19: 47:37.412 - 07:00 [10164 info "ThreadPool"] Thread has enlisted

    2014 01-16 T 19: 47:37.459 - 07:00 [info 07696 "Default"] MNTAPI: mounted volume \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.584 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.677 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.755 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.849 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:37.942 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:38.052 - 07:00 [info 07696 "Default"] error 0 when calling GetVolumeInformation for \\.\vstor2-mntapi20-shared-444D494F3A49443AFFAA78400E432548BF0767C6ABA1873F03000000\ FS: <>

    2014 01-16 T 19: 47:38.098 - 07:00 [10164 info "ThreadPool"] wire removed from the list

    2014 01-16 T 19: 47:38.098 - 07:00 [info 03736 "ThreadPool"] Thread has enlisted

    I wonder if the converter is not able to work on the GPT partitions?  (I think I saw some discussion of the community on this problem using v.5.1, but using 5.5 should be resolved?)

    Any help is appreciated. Thank you

    Your problem is with VSS, it is probably the lack of space, to seek solutions and similar problems.

    Errors that you see are expected, we need a full newspaper bundle for investigation and don't warry on GPT disks, they are supported with converter 5 +.

  • OEM12c: creation of dynamic group using emcli

    Hello Sir,

    I'm new to OEM12c.

    I know how to create dynamic groups via the graphical console OEM.

    Can someone tell me how to create using EMCLI command line utility?

    I searched on the net but I got information about the creation of simple group by using the command emcli create_group, but not dynamic group.

    I have to do because I got error to call oracle support when creating it through gui.

    so please, help me.

    Thanks in advance.

    Hello

    This is not possible, we do not have this feature.

    But already a request for development totalled for that:

    BUG 17361227 - CREATE a GROUP DYNAMICS IN OEM VIA EMCLI

    Will be considered in the feasibility-based versions of the feature.

    Thank you
    Vincent

  • How to create a dynamic RTF report that creates dynamic columns based on the selection of dynamic columns in a table?

    Hi all

    Suppose I have table, whose structure changes frequently on a daily basis.

    For example. / / desc my_table gives you after the name of the column the day 1

    SQL > my_table DESC;

    Output

    Name

    Age

    Phone


    Day 2, two other columns are added, viz, address and salary.

    SQL > my_table DESC;

    Output

    Name

    Age

    Phone

    Address

    Salary


    Now, I want to create a Dynnamic RTF report which made extracting data from all columns from my_table daily. For this, I have defined a simultaneous program with XML output type and include in annex a data/definition of data model that takes XML as input and gives the final result of the conc program in EXCEL layout. I am able to do that for a constant number of columns, but don't know how to do it when the number of columns to display dynamically changes.

    For 1 day my XML file should be like this.

    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
    </group>
    </dataStructure>
    </dataTemplate>
    
    

    And my day 1, EXCEL output RTF model should be like this.
    Name age phone

    Swapnill 23 12345

    For 2 days my XML file should be like this. With 2 new columns selected in the SELECT clause.

    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    ,Address
    ,Salary
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
      <element name="Address" value="Address" />
      <element name="Salary" value="Salary" />
    </group>
    </dataStructure>
    </dataTemplate>
    
    

    And my day 2, exit EXCEL model RTF should be like this.
    Name address telephone pay

    23 12345 Madrid 100000 Swapnill

    Now, I don't know below things.

    • Make the dynamic XML as we did in the day 1 there are 3 columns in the SELECT statement and the day 2, 5 columns. I want to create a dynamic XML which must not be changed if the new columns are added into my_table. I don't know how to create this query and also create their corresponding items below.
    • Make the RTF model dyanamic as day 1 there are 3 exit EXCEL columns and the day 2, 5 columns. I want to create a dynamic RTF model that would display all the columns selected in XML dynamic. I don't know how the RTF will create new XML tags and how it will know where to place them in the report. Means, I can create model RTF day 1, by loading the XML data for 3 columns and place 3 tags XML in the model. But how he will create and place the tags for the new columns the day 2?

    Hope so, you got my requirement, it's difficult. Please let me know how I can implement the necessary solution using the RTF dynamically without any manual intervention.

    Kind regards

    Patricia K.

    Post edited by: SwapnilK

    Hi guys,.

    I was able to solve above the requirement.

    I created a procedure that would create & update (attached to the data definition) XML file dynamically for each race. This dynamic XML contains the SQL statement for the data query that is built dynamically. I am updating this XML file using XDOLoader utility to the definition of data. Then run my program customized to generate the excel output.

    Exit excel retrieves correct number of columns dynamically (3 on Day1 and Day2 5), with corresponding data records.

    Kind regards

    Patricia K.

Maybe you are looking for