Data store

I AM able to delete all the files data dtore safely?

LJ

No, if you want your computer to continue working.  They are required by the operating system

Tags: Windows

Similar Questions

  • root properties in the connected data store: error when accessing the date/time storage

    When you browse the properties my connected data store I get an error message when you try to read the value of the property of 'storage date/time': object doesn't support this property or method.

    Here is a minimal example:

    Dim oMyDataStore, MyProperty, oMyProperties
    Set oMyDataStore = Navigator.ConnectDataStoreByParameter ("TOC", "" & "C:\Program Files (x 86) \National 2012\Examples\Data\Example_data.tdm" & "" ')
    Set oMyProperties = oMyDataStore.RootElements (1). Properties
    For each MyProperty in oMyProperties
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value "")
    Next

    Why can I not access this particular property by default?

    Hi Phex,

    for the date/time properties, an object called UsiTimeDisp is returned. This object allows to that extend features of service as access to each part separately (day, year, hour, seconds,...) of your date/time value. If you want to print the value of time with MessageBoxDisp, you can use the VariantDate this object property.

    Your code might look like this then:

    Dim oMyDataStore, MyProperty, oMyProperties
    Set oMyDataStore = Navigator.ConnectDataStoreByParameter ("TOC", "" & "C:\Program Files (x 86) \National 2012\Examples\Data\Example_data.tdm" & "" ')
    Set oMyProperties = oMyDataStore.RootElements (1). Properties
    For each MyProperty in oMyProperties
    MyProperty.DataType = eTime Then
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value. ' ") VariantDate)
    On the other
    Call MsgBoxDisp ("property name:" & MyProperty.Name & + "\n"&"property value:" & MyProperty.Value "")
    End If
    Next

    I hope this helps.

    Good day

    Eva

  • Connection to the AOP with several NIC data store

    I have a situation where I need to have the computer that is running the tiara to be connected to two different networks.  I have two NIC installed in the machine, NIC A and B NIC, we will call them.  The reason for this is that I use Diadem to access the server on a machine of AVL PUMA AO.  If I connect to the local network PUMA, PUMA sometimes breaks down, probably something to do with the IP address.  So PUMA has need to be on a network that is not a router.  My tiara computer must communicate with PUMA, as well as with local shared drives on our corporate network.

    In any case, I have the company LAN hung on A NIC and hung on NIC B PUMA network.  Tiara fails to connect when the two networks are connected, but connects to the data store no problem when that network PUMA is hung. Any ideas how to solve this problem?  It seems tiara is looking for NIC - A instead of NIC B, as appropriate.

    For reference, when the two NIC is connected, I can access other than readers, and separate computers to ping on both networks, without problem, is not a connection problem.

    Any help would be appreciated.

    -Russ

    I guess poth NIC have different IP.

    -Did you use IP instead of the server name.

    -Do you use RPC or CORBA to access the PUMA Server?

    -What version of DIAdem.

    You can create a log file when the connection has failed?

    Greetings

    Andreas

  • Need help with a Citadel of DIAdem data store opening.

    Hello

    I was wondering if someone can help me to connect to a Citadel of DIAdem data store. I've read all the online help and cannot operate.

    On my PC, I use DIAdem v11.1 and v6.1 Lookout installed as a plugin. I am trying to connect to a data of Citadel store 5 on a server visible in the image below, specifically the default database on HPSERVER1. The installation of MAX on HPSERVER1 tells me that there are 2 versions of LabVIEW Run-Time installed, 8.2.1 and 9.0.1 (I don't know if this is relevant).

    When I select \\hpserver1\default_database, I then set the properties as follows:

    In the Advanced section, I'm the deadline set to 90 seconds. When I hit OK, then I get the following message, which then brings back me to the previous screen.

    Any help is very appreciated,

    David.

    Hi David,

    6.2 Lookout CLIENT is for people who do not have installed Lookout but still want to connect to a database of Citadel with DIAdem.  This works for databases Citadel created by Lookout as long as those created by LabVIEW DCS, is said by the way.

    In your case, you have already installed Lookout, you don't need this additional client software.  There is no improvement in functionality in this interface between 6.1 and 6.2, so you do not miss anything, and youre data import is already working.

    I don't know about lookout not appearing is not in the License Manager, etc.  I'm sorry.

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • Getting property of type 'Date' from a PDO data store

    It is therefore a question of both parties.  Part A: when I search for data in a data store, to find data by using the object Navigator returns the correct number of results, using the object. GetElementList does not work.  I'm looking in the data store for steps created between a certain date (using the iStartTime property).  It seems that they must return the same results.  Please see part A of my code pasted below.  Any suggestions?  Perhaps it is - that it is related to part B of my question.

    Part b: iStartTime property is the data type 30, or of type Date.  When I try to access the value of the property of iStartTime I got an error stating that ' the object does not support this property or method ".  Is there a special way to get the value of a property when the property is a date?

    Any suggestion would be appreciated!

    -Russ

    Option Explicit  ' force explicit declaration of all variables in a script.
    Dim MyElementList, oMyDataStore, StartDate, EndDate, MySearchString

    MyDataStorePlugin Sun: myDataStorePlugin = 'PDO '.
    MyDataStoreParam Sun: myDataStoreParam = "AVL7D667E7B1EBFBAB6736F66010CCAB1AC8CB28FD2ROCMSAPP01600000000YESYESYESauto"
    Set oMyDataStore = Navigator.ConnectDataStoreByParameter (myDataStorePlugin, myDataStoreParam)

    StartDate = Cdate (DateAdd("d",-3,Date)) + TimeSerial (0,0,0)
    EndDate = Cdate (DateAdd("d",0,Date)) + TimeSerial (23,59,59)

    '------------------------------------------------------------------------------------------------------------------------------------------------
    ' PROBLEM A: THESE TWO SEARCH SHOULD BE THE SAME, BUT THEY RETURN DIFFERENT results.
    "This returns zero search results."
    Set MyElementList = oMyDataStore.GetElementList ("Action", "iStartTime > =" & StartDate & ") iStartTime<=" &="">
    MsgBox ("GetElementList count:" & MyElementList.Count)

    «That returns 18 results»
    Dial the navigator. Display.CurrDataStore.Browser.refreshALL
    Call Navigator.Display.CurrDataStore.QueryForm.Clear
    Call Navigator.Display.CurrDataStore.QueryForm.Conditions.Add("Measurement","iStartTime",">=",Startdate) ' here is where I add a new condition.
    Call Navigator.Display.CurrDataStore.QueryForm.Conditions.Add ("action", "iStartTime" "<=",EndDate) 'here's="" where="" i'm="" adding="" a="" new="">
    Navigator.Display.CurrDataStore.QueryForm.Conditions.Logic = "C1 AND C2.
    Navigator.Display.CurrDataStore.ResultsList.Elements.MaxCount = 10000
    Call Navigator.Display.CurrDataStore.QueryForm.Search () ' and that triggers the search according to my requirements and the data store I went.
    MsgBox ("browser search count:"& Navigator.Display.CurrDataStore.ResultsList.Elements.Count ")

    '------------------------------------------------------------------------------------------------------------------------------------
    «PROBLEM B: iStartTime IS DATA TYPE 30 OR DATE TYPE.» HOW TO ACCESS THE VALUE?

    MsgBox ("identification data type:" & Navigator.Display.CurrDataStore.ResultsList.Elements.Item (1).) Properties.Item ("Id"). DataType) "Message:" data type Id: 3 ""
    MsgBox ("Id value:" & Navigator.Display.CurrDataStore.ResultsList.Elements.Item (1).) Properties.Item ("Id"). Value) "Message:" Id value: 266888 ""

    MsgBox ("iStartTime data type:" & Navigator.Display.CurrDataStore.ResultsList.Elements.Item (1).) Properties.Item ("iStartTime"). DataType) "Message:" type of identification data: 30 ""
    MsgBox ("iStartTime value:" & Navigator.Display.CurrDataStore.ResultsList.Elements.Item (1).) Properties.Item ("iStartTime"). Value) ' results in error, the object does not support this property or method

    Sorry, I've replaced iStartTime by measurement_begin to make it work on my local database :-)

    The point is that the syntax of GetElementList is the following

    "iStartTime > = 20121201033; iStartTime<>

    When converting a CDate to str it cause string locale-dependent.

    But the suggestion would be to use the

    Dim query: query = oMyDataStore.CreateQuery set

    instead of the query string. Because he avoid conversion errors. Be aware that even a double value to a string in Germany for example will convert a written decimal number while the stringquery expects at this point notation.

    Set MyElementList = oMyDataStore.GetElementList ("Action", "measurement_begin > =" & RTT (StartDate, "#YYYYMMDDhhnnss") & ") measurement_begin<=" &="">

    must provide correct results.

  • Search by wildcard characters in the data store

    I'm trying to search with a wildcard in a PDO data store.

    This produces a result:

    Back EMF Date: time 2012-08-20: 14:16:04

    But that does not

    Return *.

    How can I use wildcards in a search for data store?

    I guess that all of the following conditions must create correct results

    Dim query: query set = store. CreateQuery
    query. ReturnType = "measure".
    query. Conditions.Add 'Measure', 'name', 'is', ' back. "
    store. Search (Query)

    store. GetElementList ("Action", "name = % rear", true)

    store. GetElementList ("Action", "name = back *", false)

    store. GetElementList ("Action", "name = back *")

    Please take into account the fact that the PDO does not support case-insensitive query.

    I assume you are using an AVL Puma. You may need to set a switch in advanced the PDO connection dialog box. 'Use as instead of GAME'.

    In the connection setting, it appears as

    YES

  • permit request for the data store

    I recently bought a license of data store for my virtual machine host. My question is, can I just replace the current key on existing servers with the key data store? Also, is the key to good for the 2008 and 2012 on the host servers?

    Hello

    Post your question in the TechNet Server Forums, as your question kindly is beyond the scope of these Forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • How to use the command to move the machine to a data store in another data store in WTT(Windows Test Technology) Atlas (2.7)?

    I searched doc help WTT Atlas, just found this: "the MoveMachine command allows users to move client computers between the basins of the machine. This command assumes that the user has permissions of correction to carry out operations and generates an error if this is not the case. "

    Note: this command just explain machine displacement between the watersheds of the machine instead of the data store.

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
    *
  • I need to delete files from data store. Get the message "could not open because it was in use" How can I work around?

    9 my Windows update does not work. It is said to open "Datastore" and del; files allow you updates. When I try to open the data store in a first time, I wonder what program to use, and then said "can not open because it is used by another program."  This Windows Vista bit. I can't install Explorer 9 until I have a workaround. Help.

    Hello

    What is the exact error code or error message?

    I suggest to reset the Windows update components and then try to check updates, and then install the updates and check if it helps.

    How to reset the Windows Update components?: http://support.microsoft.com/kb/971058

    Solve problems when you can not install Internet Explorer 9: http://support.microsoft.com/kb/2409098

    I hope that helps!

  • No network traffic VM being withdrawn and any data store Info

    I am running a trial of Foglight Enterprise visualization and upward and running things and an agent installed to my VMWare vCenter server infrustructure.  He shoots a lot of info, but none of the basic data store info is pulled (not the stuff that requires the Foglight for integration of storage) and none of the information network is taken for the individual virtual machine.  Guests and parents have netowrk showing traffic, but nothing on the side of the virtual machine.  The environment is configured with dvswitches for data, iscsi, vmotion, etc..  Any idea of what might happen, or I can look at?

    I see some errors in the agent log if I pull it down on data warehouses... Here's a sample:

    ERROR [Quartz [0] - 6] com.quest.agent.esx.task.HardwareTask - DatastoreInfo is missing for Datastore:datastore - 162
    2015-03-17 13:57:16.165 ECHO ERROR [Quartz [0] - 6] com.quest.agent.esx.task.HardwareTask - DatastoreInfo is missing for Datastore:datastore - 131
    2015-03-17 13:57:16.165 ECHO ERROR [Quartz [0] - 6] com.quest.agent.esx.task.HardwareTask - DatastoreInfo is missing for Datastore:datastore - 10985

    But apart from that, I don't see much... I do not see what seems to be warnings of Java, like this:

    2015-03-17 13:57:17.291 ECHO [Quartz [0] - 6] WARN com.quest.agent.esx.task.ESXAgentTask - inventory and relationship - FGLAM submission error: null
    java.lang.NullPointerException
    at com.quest.vmware.agent.history.samples.VMWHostVirtualSwitch__IMPL.__addPropertiesToNodeTree(VMWHostVirtualSwitch__IMPL.java:2418)
    at com.quest.vmware.agent.history.samples.VMWHostVirtualSwitch__IMPL.__addToNodeTree(VMWHostVirtualSwitch__IMPL.java:2348)
    at com.quest.vmware.agent.history.samples.VMWESXServerNetwork__IMPL.__addPropertiesToNodeTree(VMWESXServerNetwork__IMPL.java:1339)
    at com.quest.vmware.agent.history.samples.VMWESXServerNetwork__IMPL.__addToNodeTree(VMWESXServerNetwork__IMPL.java:1078)
    at com.quest.vmware.agent.history.samples.VMWESXServer__IMPL.__addPropertiesToNodeTree(VMWESXServer__IMPL.java:5015)
    at com.quest.vmware.agent.history.samples.VMWESXServer__IMPL.__addToNodeTree(VMWESXServer__IMPL.java:4213)
    at com.quest.vmware.agent.history.samples.VMWCluster__IMPL.__addPropertiesToNodeTree(VMWCluster__IMPL.java:10666)
    at com.quest.vmware.agent.history.samples.VMWCluster__IMPL.__addToNodeTree(VMWCluster__IMPL.java:10010)
    at com.quest.vmware.agent.history.samples.VMWClusterCollection__IMPL.__addPropertiesToNodeTree(VMWClusterCollection__IMPL.java:780)
    at com.quest.vmware.agent.history.samples.VMWClusterCollection__IMPL.__addToNodeTree(VMWClusterCollection__IMPL.java:702)
    at com.quest.vmware.agent.history.samples.VMWVirtualCenter__IMPL.__addPropertiesToNodeTree(VMWVirtualCenter__IMPL.java:9298)
    at com.quest.vmware.agent.history.samples.VMWVirtualCenter__IMPL.__addToNodeTree(VMWVirtualCenter__IMPL.java:8979)
    at com.quest.vmware.agent.history.samples.VMWModel__IMPL.__addPropertiesToNodeTree(VMWModel__IMPL.java:1304)
    at com.quest.vmware.agent.history.samples.VMWModel__IMPL.__addToNodeTree(VMWModel__IMPL.java:974)
    at com.quest.vmware.agent.history.samples.VMWModel__IMPL.buildSubmission(VMWModel__IMPL.java:919)
    at com.quest.vmware.agent.history.samples.VMWModel__IMPL.submit(VMWModel__IMPL.java:810)
    at com.quest.agent.esx.task.HardwareTask.submitData(HardwareTask.java:813)
    at com.quest.agent.esx.task.ESXAgentTask.submit(ESXAgentTask.java:208)
    at com.quest.agent.esx.task.ESXAgentTask.run(ESXAgentTask.java:201)
    at com.quest.agent.esx.ESXAgent.runTask(ESXAgent.java:518)
    at com.quest.agent.esx.ESXAgent.esxHardwareCollection(ESXAgent.java:718)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at com.quest.glue.core.services.EquivalenceInvocationHandler.invoke(EquivalenceInvocationHandler.java:76)
    at com.quest.glue.core.agent.AgentInteractionHandler.invoke(AgentInteractionHandler.java:177)
    to com.sun.proxy. $Proxy65.esxHardwareCollection (unknown Source)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at com.quest.glue.core.agent.scheduler.CollectorCallback.invokeCollector(CollectorCallback.java:246)
    at com.quest.glue.core.agent.scheduler.CollectorCallback.execute(CollectorCallback.java:146)
    to com.quest.glue.common.util.scheduler.quartz.QuartzScheduler$ ScheduledTaskSequentialJob.execute (QuartzScheduler.java:738)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:745)

    Thanks in advance!

    -Jake

    Hey Jake,

    I don't know what could cause this problem, it's a bit you added the role of travel data store for the Foglight service account in vCenter. Could you please create a Service request with support?
    https://support.software.Dell.com/

    Could you also attach a support package for FglAM to the case? Please put the number of file here, or send it to me via private message.

    Thank you.

    Gaston.

  • Machine virtual IOPS / s report, how to display the name of the data store?

    Hi guys

    I am new to the Foglight community, this is a great tool, and I learn a lot.

    Currently I am trying to create a simple table that will show me metric of my VMware environment: Virtual Machine name, Datastore IOPS and data store.

    However I can't find how to include data store name in the table, because it is not a measure of the Virtual Machine. I think I need to expand the scope of my table to include VMware Datastore, but I don't know how to do this.

    -Mark

    Check the options available it seems that it can be done with WCF (the frame behind the Foglight dashboards).  We recommend generally customers who plan to build views WCF take adequate training or our PSO people engaged in it.

    In any case I can help show a quick example of how it's done.

    Please try this on a local/test server.

    Go to Configuration > definition >

    Make sure that you are in my definition, and click the icon to add a view. then choose from the tables and trees - oriented line table

    Give a name to the view, go public and make a portlet/reportlet and apply

    Switch to the configuration tab and click the change for the lines and choose a query

    Under query, expand the VMware and scroll down

    Until you can select the query for virtual machines

    And press the set button.

    Your view should look like this

    Now you must select the columns.

    Each column has a value you can edit and there is a button + to add additional columns.

    Lets start with the name of the virtual machine - click on the button to change to your default column and choose the context.

    Click on the drop down menu to enter key and choose the current line (virtual vmware machine)

    Click on the drop down menu to access path and scroll down until you can select the name and then click on set.

    You have created a table that lists the names of all virtual machines.

    You can click on save. and then click test, choose a time and click the result. A new window will open a show the list you of virtual machines.
    From here you can continue to add additional columns, each time choosing the key entry in the current line and the path to the metric/string to display.

    For example, the name of the data store.
    I change the module

    Click the configuration tab and click the icon to add a column

    For the column value, that I chose defined context once again, the key input is the current row and for the path, I expand the node for the data store

    And scroll until I see the Proprietename

    If you save and test you will see the result

    Keep adding columns and the data you want, notice that you have arrows that allow you to control the order of the columns.

    Note that you can click Show advanced configuration properties

    This will give you the opportunity to see the properties of the extra table, such as header - giving you the opportunity to give a more meaningful name (name of the data store, the name of the virtual machine, etc.) to the column header.

    You can now go you drag and drop the table edge/report and under my eyes, you will see your new view

    Drop it in the main view

    I hope this has given you the starting point to build this table.

    As I said, I strongly recommend going through our WCF training if you plan build more custom views or hire software Dell PSO Organisation to help build you views that correspond to your need.

    Best regards

    Golan

  • Time range of statistical performance data store

    When I look at the performance of the data store tab in the performance monitor what time slot is used to generate the statistics?

    Hi Michael,

    The time slot is for 24 hours.

  • I need a few persistent data store help of Pentecost

    Hi, I have a problem, try to store persistent data, I m using Eclipse 3.4.2 and BlackBerry plugin, as I check my work with the correct laboratory and my code hasn´t issues only a warning I see on the laboratory code it s normal, but when I try to run the Simulator I get this:

    "Eception exception: lack of measurement of the resource.

    and this is the code

    package com.rim.someguy;
    
    //Import section
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.*;
    import net.rim.device.api.system.*;
    import net.rim.device.api.util.*;
    import net.rim.device.api.i18n.ResourceBundle;
    import java.util.*;
    
    public class measure extends UiApplication implements measureResource{
    
        //Variables for user interface fields
        private EditField numMeasureDev;
        private AutoTextEditField observation;
        private EditField lecture;
        private ObjectChoiceField choice;
        private EditField date;
    
        //Persistent data
        private static Vector data;
        private static PersistentObject store;
    
        //Resource bundle variable
        private static ResourceBundle _res;
    
        //MAIN
    
        public static void main(String[] args){
            measure app = new measure();
            app.enterEventDispatcher();
        }
    
        //Save Menu
        private MenuItem saveItem = new MenuItem(_res, SAVE, 110, 10){
            public void run(){
                StoreInfo nfo = new StoreInfo();
                nfo.setElement(StoreInfo.NUM, numMeasureDev.getText());
                nfo.setElement(StoreInfo.LEC, lecture.getText());
                nfo.setElement(StoreInfo.DAT, date.getText());
                nfo.setElement(StoreInfo.SEL, _res.getString(choice.getIndex()));
                nfo.setElement(StoreInfo.OB, observation.getText());
                data.addElement(nfo);
    
                //Storing data
                synchronized(store){
                    store.setContents(data);
                    store.commit();
                }
                Dialog.inform(_res.getString(APP_SUCCESS));
                numMeasureDev.setText(null);
                lecture.setText(null);
                date.setText(null);
                choice.setLabel(null);
                observation.setText(null);
            }
        };
    
        //Get Menu
        private MenuItem getItem = new MenuItem(_res, GET, 110, 10){
    
            protected int index;
    
            public void run(){
                synchronized(store){
                    data = (Vector) store.getContents();
                    LabelField label = new LabelField();
                    label.setText("Selecciona el dato a mostrar: ");
                    BasicEditField bef = new BasicEditField();
                    index = Integer.parseInt(bef.getText());
                    if (!data.isEmpty()){
                        StoreInfo nfo = (StoreInfo) data.elementAt(index);
                        numMeasureDev.setText(nfo.getElement(StoreInfo.NUM));
                        lecture.setText(nfo.getElement(StoreInfo.LEC));
                        date.setText(nfo.getElement(StoreInfo.DAT));
                        choice.getIndex();
                        observation.setText(nfo.getElement(StoreInfo.OB));
                    }
                }
            }
        };
    
        //Persistent Object
        static{
            //Resource Bundle
            _res = ResourceBundle.getBundle("measure");
    
            //Get the reference to PersistentObject and set value to Vector if is empty
            store = PersistentStore.getPersistentObject(0xdec6a67096f833cL);
            //key is a hash
            synchronized(store){
                if (store.getContents() == null){
                    store.setContents(new Vector());
                    store.commit();
                }
            }
        }
    
        //Class created for a persistent object StoreInfo
        private final static class StoreInfo implements Persistable{
    
            //Data for elements
            private Vector elements;
    
            //Fields
            public static final int NUM = 0;
            public static final int LEC = 1;
            public static final int SEL = 2;
            public static final int OB = 3;
            public static final int DAT = 4; 
    
            //in StoreInfo, add a new empty Vector with capacity of 4 elements and persist
            public StoreInfo(){
                elements = new Vector(5);
                for(int i = 0; i < elements.capacity(); ++i){
                    elements.addElement(new String(""));
                }
            }
    
            //Retrieve Vector element
            public String getElement(int id){
                return (String) elements.elementAt(id);
            }
    
            //Set Vector Element
            public void setElement(int id, String value){
                elements.setElementAt(value, id);
            }
        }
    
        //Measure constructor declaration
        public measure(){
    
            //Create a main screen
            MainScreen mainS = new MainScreen();
            mainS.setTitle(_res.getString(APPLICATION_TITLE));
            numMeasureDev = new EditField(_res.getString(TEXT1),"",
                    Integer.MAX_VALUE, EditField.FILTER_NUMERIC);
            lecture = new AutoTextEditField(_res.getString(TEXT5),"",
                    Integer.MAX_VALUE, EditField.FILTER_NUMERIC);
            date = new EditField(_res.getString(TEXT6),"");
            choice = new ObjectChoiceField(_res.getString(TEXT2),_res.getStringArray(OPTION));
            observation = new AutoTextEditField(_res.getString(TEXT3),"");
    
            //Adding elements to Screen
            mainS.add(numMeasureDev);
            mainS.add(lecture);
            mainS.add(date);
            mainS.add(choice);
            mainS.add(observation);
    
            //Adding menuItems to menu
            mainS.addMenuItem(saveItem);
            mainS.addMenuItem(getItem);
    
            //Push all elements to screen
            pushScreen(mainS);
        }
    }
    

    If anyone knows what I m hurt you showme how please!

    Two thoughts:

    1. If you have changed somehow the object type that you want to keep, you must remove the Simulator files before running again.
    2. How about you provide a clue as to where the class cast exception that happens? You are more likely to help in this way.
  • How can I select a different data store for vm swap files?

    In Esxi 5.5, how can set up a separate data for the swapsfiles store.

    5.5, default will be in the same data store

  • ESXi data store on virtual drive

    Client a BE7K servers (M4 UCS C-240), it came pre-installed with ESXi 5.5 and 4 virtual drives, each virtual drive is configured with RAID 5. Now, we need to install a UC application that requires RAID 10. We use not one of the data store for any guest operating system so our plan is to remove this DS and respective Virtual Drive, break this RAID and rebuild than RAID 10 is here the challenge how can we identify which Datastore, mapped with which virtual drive? My understanding is that ESXi does not map 1-1 (IE VD0 = DS1). If anyone can shed some light on to identify what would be really appreciated.

    Thank you.. !

    I hope it's a little more concise:

    Take the exit of

    ~ # esxcfg-scsidevs - m

    NAA.678da6e715d760101f0aa4a61d982f63:1/vmfs/devices/disks/naa. 678da6e715d760101f0aa4a61d982f63: 1 5777f3b3-7bd4c97a-4ba0-a0369f9400b4 0 datastore4

    Then this match with the release of the list of esxcli storage base path:

    Unknown.vmhba1 - unknown.2:2 -naa.678da6e715d760101f0aa4a61d982f63

    UID: unknown.vmhba1 - unknown.2:2 - naa.678da6e715d760101f0aa4a61d982f63

    The Runtime name: vmhba1:C2:T2: L0

    Feature: naa.678da6e715d760101f0aa4a61d982f63

    Full device name: Cisco's Local disk (naa.678da6e715d760101f0aa4a61d982f63)

    Adapter: vmhba1

    Channels: 2

    Target: 2

    LUN: 0

    ... snip

    This must match your 3rd VD, since the target and VD #s start with 0.

    It confirmed in the laboratory: see below

    VD0 (1 virtual drive created) corresponds to T0... and VD3 corresponds to T3.

    These figures are of course unique to each hba/controller if you want to ensure the vhba # and controller # (vmhba1 and C2 in my example) come from the device even when they match.

    Kirk...

  • "boot configuration data store could not be opened" when starting bcdedit.

    "boot configuration data store could not be opened" when starting bcdedit. Boot config-dual PREV XP Pro x 64 1st disk; XP Pro 32 on the 2nd disk.  Nuked 1st disk and installed Win 7.  It seems that Windows 7 has not identified the 2nd OS because it wasn't on a partition on the same drive?  All I can find is info on editing an existing data store. I don't see any information on how to create one from scratch, except there is a Create option and the different option, but not how to decide what the values should be. Any help is greatly appreciated.

    Boot from the installation DVD and run Recovery menu. Command prompt.

    bcdedit/export C:\BCD_Backup
    c:
    Boot CD
    BCD attrib s h - r
    Ren c:\boot\bcd BCD.old

    Bootrec /RebuildBcd

    Messages rating helps other users

    Mark L. Ferguson MS - MVP

Maybe you are looking for