Tables average Sub

Hello

I try to have a vi that receives an array of file, and then built the sup boards (according to the FPS/mid-range everything), then take the average, detects the difference between each data point and count the number of times where the difference is greater than the threshold. Please see the attached file - my block diagram.

At this point, the vi is running but the is a bug in the code that I can't find :-(.

When I run it on a counter of data sample returned ~ 350 where it suppose to be only 3.

I will appreciate if you can take a look.

Thank you

PS.

I am happy to download the vi and an example of data file if necessary.

simply_me,

You take a subset of the table, get the average which seems ok.  But then understand you the difference between the average and all you started with instead of the subset of the array that allowing you to calculate the average.  Guess you have to do this.

Tags: NI Software

Similar Questions

  • TestStand table average

    Hello community,

    Using 32-bit Teststand 2014

    I have a one-dimensional array with a size ten (Array [10]). I want to be able to take an average of this table in Teststand. Using an expression of the statement, I am able to do digital = ((Array [0] + tableau [1] +...)) Array [10]) / 10), but this is tedious. Especially, if I have a table for more than a decade.

    In Teststand, is there a mathematical operation or another way to get the middle range?

    I don't think it's possible in a single expression.  Consider the attached example that does it in a single step.

    Hope this helps,

  • creating a table/average question

    I'm new to labview and I have problems to understand how to create a table.

    I use an Arduino Uno as my DAQ and when I take an anolog measure I've seen a lot of fuctuation to my measure. I know with arduino, you can perform with an average simple by using the function "Get a finished sample of Analog", but I know that I not be using an Arduino in the long term and trying to figure out the right way to do it.

    When I have on average with the Arduino IDE I usually code that looks like this:

    float analogsum = 0;

    for (int i = 0; i)< 10;="">

    analogSum += analogRead (analogPin); where analogRead converts the analog value to a value\ digital 10-bit

    }

    average = analogSum/10;

    I am trying to create this same feature in LabView. The only way I can imagine the analog value of each iteration, in summary would be to store each value in a table, then add them together and divide by the number of iterations in my loop for.

    How would I do this in Labview?

    Hi awwende,

    show all 3 suggestions above:

    You really should go LabVIEW101 the ni.com site to learn the fundamentals of LabVIEW!

  • Selective table average

    Hello

    I have a 2D chart. The following code generates a random array of 3 x 3.

    I want to get the mean (or average) only values greater than a set value (user-defined) in the table.

    Could someone help me.

    I tried to use a "superior to", type the case statement, but when I do this, for less than the value set elements a zero is placed in a new table. This changes the average because it includes the zero element.

    Almost, I need to create a table 1 d of the righteous elements above the value of the definition of the matrix 3 x 3.

    I want to adapt what I learn here much larger bays of 400 x 400 and upwards.

    Any help would be appreciated.

    Thank you

    K

    Attached to the LV 8.6. Please note that I have not downconvert another example since it is my humble opinion, nothing is done for you.

    Norbert

  • table average

    Hi all, I have two paintings as follows

    1.

    Select strc_id, strc_name, STRC_TYPE Glu;

    o/p

    STRC_ID STRC_NAME STRC_UOM

    1               Roads                                                        Square Yards

    2               Fields                                                         Square Yards

    3 power each, linear feet

    4 irrigation each, linear feet

    5 navigation each, linear feet

    6               Museum                                                    Each

    7 storage each, linear feet

    Measures (UDM) has their numbers defined as follows in the other table. That is to say

    2. Select UOM_ID, UOM_NAME from UOM_TYPE;

    UOM_ID UOM_NAME

    1 each

    Track 2 Miles

    3 linear feet

    4 miles

    5 square yards

    6 square feet

    I wrote a query against the table 1 i.e STRC_TYPE who willl divide the STRC_UOM

    Select STRC_ID, STRC_NAME, substr)

    STRC_UOM,

    InStr ("," |) STRC_UOM, ', ', 1, seq).

    InStr ("," |) STRC_UOM | (",", "," 1, seq + 1)-instr ("," |) STRC_UOM, ', ', 1, seq)-1) STRC_UOM

    of STRC_TYPE, (select seq level of the double connect by level < = 100000) seqgen

    where instr ("," |) STRC_UOM, ', ', 1, seq) > 0 order by STRC_NAME;

    O/P:

    It divides as follows of the UOM_NAME

    STRC_ID STRC_NAME STRC_UOM

    1               Roads                                                        Square Yards

    2               Fields                                                         Square Yards

    3               Power                                                         Each

    4.              Power                                                         Linear Feet

    5.              Irrigation                                                      Each

    6 irrigation linear feet

    ....

    ....

    but now I would create an intermediate table and wait for the exit as follows and need there should be a constraint of integrity on the staging table.

    Expected results

    Table_ABC

    STRC_ID STRC_NAME UOM_CODE (this is the pseudonym of UOM_ID in table 2 above)

    1 5 roads (the UOM_ID is 5 of the table above for square yards)

    2               Fields                              5

    3               Power                             1

    4.              Power                             3

    5 irrigation 1

    6 irrigation 3

    ...

    ...

    can you please suggest me how to write code for this requirement.

    Thank you

    with

    strc_type as

    (select 1 strc_id, strc_name 'Roads', 'Square Yards"uom of union double all the)

    Select 2, 'Fields', 'Square yards' double Union all

    Select 3, 'power', 'Each, linear feet' from dual union all

    Select option 4, 'Irrigation', 'Each, linear feet' from dual union all

    Select 5, "Navigation", "Each, linear feet" dual Union all

    Select 6, 'Museum', 'Each' from dual union all

    Select 7, 'Storage', 'Each, linear feet' of the double

    ),

    uom_type as

    (select 1 uom_id, 'Each' uom_name of all the double union)

    Select 2, 'Lane Miles' from dual union all

    Select 3, 'The linear feet' from dual union all

    Select option 4, 'Miles' from dual union all

    Select 5, "Square Yards' from dual union all

    Select 6, 'Square Feet' from dual

    )

    Select row_number() on strc_id (st.strc_id, st.strc_name),

    St.strc_name,

    UT.uom_id uom_code

    from (select strc_id,

    strc_name,

    -case when instr (Glu, ',') > 0

    then substr (Glu, 1, instr (Glu, ',') - 1)

    unit of measure to another

    unit of measure of end

    of strc_type

    Union of all the

    Select strc_id,

    strc_name,

    LTRIM (substr (UOM, InStr (GLU, ',') + 1))

    of strc_type

    where instr (Glu, ',') > 0

    ) st.

    uom_type ut

    where st.uom = ut.uom_name

    STRC_ID STRC_NAME UOM_CODE
    1 Roads 5
    2 Fields 5
    3 Power 1
    4 Power 3
    5 Irrigation 1
    6 Irrigation 3
    7 Navigation 1
    8 Navigation 3
    9 Museum 1
    10 Storage 3
    11 Storage 1

    Concerning

    Etbin

  • Save and write data from table to table - easy

    Hello

    I got this system delivered to me. I'm new to LabView and just save the data from the table "average voltage" (inside the while loop) to do some additional testing of our product.

    I will like to do similar to this.

    (1) save in excel file.

    (2) save only when a button button and save it then 5 ilteration.

    (3) save and manipulate the data, so it is displayed in 6 columns (each LED 1) instead of 1 long colum.

    I tried different things with structure business T/F, which resolved the buttom-request. But I am in doubt I should use, writing to the file of the measurement or write to us to the worksheet (by using labview 15.0)-delimited according to my offer the best possible?

    He also seems to be too much to handle when I try to write in txt file, because it pops up with and error that I do not know how to fix, but it says this:

    Error-200279

    Possible reasons:

    The application is not able to cope with the acquisition of equipment.

    Increase in the size of buffer, most frequently the reading of data or by specifying a fixed number of samples to read instead of reading all available samples would correct the problem.

    Property: RelativeTo

    Corresponding value: current playback Position

    Property: Offset

    Corresponding value: 0

    Task name: analog channel

    Thanks in advance

    I agree with Taki, but want to make some additional remarks:

    • LabVIEW is a data flow language.  Think of the "flow" of your data.  You talk about "save only when a key is pressed" and a finite set of data.  You are collecting before the press the button and everything just do not save?
    • Data are collected at some rate, and likely, you don't want to "Miss" data points.  This means that you shouldn't do anything in the loop of the Collection that takes a long time.  If your recovery rate is low and your treatment is fast, you can have everything in a single loop.  Otherwise, to use the technical stream (producer/consumer is a good) to process the data in a single loop in parallel with the collection in a loop independent (and asynchronously).
    • How do you write your data?  You want to write "on the fly", as it is, or can you wait, collect everything, any format and then write it "all at once"?
    • What do you mean by 'save the file in Excel?  Do you mean a 'native' Excel file, one with the extension .xls or .xlsx?  Do you mean a Comma-Separated Variable (.csv) file this reading peut of Excel (and, indeed, usually registers itself to read, change the icon of the .csv files to "look like" it is really an Excel file)?  If the first case, I recommend using the report generation tool.  But for the latter, you can also use write delimited spreadsheet, which can be easier to use.

    Bob Schor

  • Table cell editing mode

    When one of the cells of table in sub LV2009 click on the mouse, it's the editing mode in the cell.

    The cursor has changed in such as excel. If the key has been pressed, the edit mode has escaped.

    In any case, is there anyone who knows how to enter the edit mode in programmatically using a property node?

    labmaster.

    I got to know the solution.

    After the update key property and then set the position of the cell to change.

    (Reading development is related to my structure.)

    labmaster.

  • ultralitej exception when attempting to insert the value into the table

    Hello

    I get this exception,

    Here is my table

    Sub createItem()
    throws ULjException
    {
    TableSchema table_schema = _conn.createTable ('Item');
    Table_schema.createColumn ("item_code", Domain.VARCHAR, 15);
    Table_schema.createColumn ("item_desc", Domain.VARCHAR, 30);
    Table_schema.createColumn ("item_rate", Domain.INTEGER);
    IndexSchema pk_schema = table_schema.createPrimaryIndex ("prime_key");
    pk_schema. AddColumn ("item_code", IndexSchema.ASCENDING);
           
    IndexSchema name_index = table_schema.createIndex ('ItemName');
    name_index. AddColumn ("item_desc", IndexSchema.ASCENDING);
    }

    I'm trying this option to enter the values in it.

    for (int i = 0; i)<>
    {
    dataAccess.insertItem (str_pCode [i], str_pDesc [i], str_pRate [i]);
    }

    Here is my code insertItem

    Insert data
    {} public insertItem Sub (string code, string desc, string rate)
    try {}
    String sql = "INSERT INTO point (item_code, item_desc, item_rate) VALUES (?,?,?)";
    PreparedStatement ps = _conn.prepareStatement (sql);

    PS. Set (code 1);
    PS. Set (2, desc);
    PS. Set (3, rate);

    PS. Execute();
    _conn.commit (); }
    {} catch (ULjException uex)
    System.out.println ("ULjException:"+ uex.toString () ');
    }
    catch (Exception ex) {}
    System.out.println ("Exception:"+ ex.toString () ');
    }
    }

    and I'm getting the following exception.

    Exception: ianywhere.ultralitej.implementation.JrException: error-[141] UltraLiteJ: table 'employee '.

    Check which line of code is throwing the exception. Look for the error on the UltraliteJ document number.

  • Issue of tables merging

    I currently have 11 tables that have a similar structure but different data and key primary in the primary key column, I want to merge all into a single table, I under 11G R2 XE with Apex 4.1.

    When applications have been created at the start we did a separate table for each office given that I was not as well versed in Oracle at the time, but now need all the data in a table, I can differentiate the data since there is a column of office that I can use to adjust the motion between apex applications , but the question I have, is that there is a BLOB column that contains an attached word (a resume) document.

    How can I go on the fusion of these paintings in 1 table, I don't mind merging one at a time, but I want to make sure we maintain that the data in the blob column.

    Here is the structure of the table, this is the same for all 11 tables, I want to merge everything in the table of SUBS, where each office table stands out as
    OFFICE-NAME_SUBS, thanks for any help.

    PKEY NUMBER
    DATE_SUB DATE
    CUSTOMER VARCHAR2 (4000)
    CANDIDATE VARCHAR2 (4000)
    RECRUITER VARCHAR2 (4000)
    SALE VARCHAR2 (4000)
    RESUME BLOB
    MIMETYPE VARCHAR2 (255)
    NAME VARCHAR2 (255)
    VARCHAR2 (4000) POSITION
    AVAILABILITY VARCHAR2 (4000)
    RATE VARCHAR2 (4000)
    QUESTIONS VARCHAR2 (4000)
    WHEN_INT VARCHAR2 (4000)
    NOTES VARCHAR2 (4000)
    VARCHAR2 (20) COMMENTS
    OFFICE NVARCHAR2 (30)
    REJECT THE VARCHAR2 (10)
    SIGNED_OFF VARCHAR2 (50)

    How can I go on the fusion of these paintings in 1 table, I don't mind merging one at a time, but I want to make sure we maintain that the data in the blob column.

    How many lines are there in total?
    Maybe you don't need any partitioning.

    Insert these tables in paragraph LOBs just will be inserted too.
    What is your concern?

  • Returns the unique items in a table

    I would like to know how to get combanations of any table without repetitions of the same elements in a different order.

    The table is made of properties of the object and could have a variable number of elements.

    In other words, if I have an array of 2 elements for example

    [a, b]

    I want to receive 3 new arrays of void

    (1) [a]

    (2) [b]

    (3) [a, b]

    I don't want to receive [b, a] as having the same elements as [a, b] only in a different order.

    Well, if there just 2 items in the table then it's pretty easy, but when there is more then I do not understand!

    An array of 4 elements for example

    [a, b, c and d]

    would need to produce a new table of the following tables 15 sub

    (1) [a]

    (2) [b]

    (3) [c]

    (4) [d]

    (5) [a, b]

    (6) [a, c]

    (7) [a, d]

    (8) [b, c]

    (9) [b, d]

    (10) [c, d]

    (11) [a, b, c]

    (12) [a, b, d]

    (13) [a, c and d]

    (14) [b, c and d]

    (15) [a, b, c and d]

    A table of 5 elements would give me overtime 24 tables and so forth.

    I tried many ways with diddlysquat results

    Slice, splice and all things nice!

    If someone of you could share this trade secret with me, I would appreciate it a lot.

    Trevor

    Nice challenge!

    We could try this:

    function arrayParts(/*arr*/a, r,i,j,t,s,p)
    // -------------------------------------
    // Note: a is supposed to contain unique items
    // [if necessary, apply a makeUnique routine first]
    {
        if(! (i = Math.pow(2,a.length)-1) ){ return null; }
        (r=[]).toString = function(){return this.join('\r');};
    
        while(i--)
            {
            r[i] = t = [];
            s = (1+i).toString(2);
            p = (j=s.length) - 1;
            while( j-- ) '1'==s[j] && t[t.length]=a[p-j];
            }
    
        // Reorder by length [if needed!]
        // ---
        r.sort( function(x,y){return x.length-y.length;} );
    
        return  r;
    }
    
    // Sample code
    // ---
    var arrTest = ['Blue','Red','Yellow','Green','Black'];
    alert( arrayParts(arrTest) );
    

    Really not optimized, but it was pretty fun to write ;-)

    @+

    Marc

  • Events in the panels under empty

    I have a user interface concept I am looking at.  The final application is to monitor the status of certain parameters in the bays of material.  Given the lack of space on the screen, and since there are so many media, I thought it could work for the customer be able to click on an item in a vacuum in a table of subgroups in the UI and asked for the name of the grid which should have its displayed information it.  When the selection is made, the façade of miniature that VI would remain in the subgroup of experts.  My experience, however, shows that it doesn't seem to be all events on subgroups.  Is it possible to do otherwise than by using the coordinates of the mouse, click in the case of the component?

    You can save events to a table of sub-panels and take actions based on the reference of ctrl.

  • Manipulation of Image data display

    Hello

    So I'm a first time LabVIEW user and I am struggling with programming graphically the project I have to do...

    The type of data, I work with are bitmap images.  Basically, a single image is there (along the y-axis) data and length of wave (along the x axis).  Each successive image shows these data for a certain value of x.  Thus, all images in the folder hold a data cube (x, y, wavelength).

    I want to do is create a VI to display these data nicely.  I want to average all wavelength data (which are in rows) to a point given y in a given image (point x) and then make sure the average value of table in a table to index x 2D, y.

    I would like for this 2D table correspond to a bitmap "average."  And if you click on a pixel/cell in this table/image (which is formed by an average of all wavelength for each pixel data), then a spectral wavelength data diagram is plotted in a separate chart.  In this way, you see the overall picture, but if you are interested in a certain point you can graphically see the raw data of wavelength after clicking on this point.

    For now, I created test data.  I run an Excel Macro to combine all data into a great file.  Each 'image' is three lines and three wavelengths by rank.  In the attached excel file, you see the 9 lines because I put 3 images together one after the other.  The problem is, LabVIEW, I try to create the new 2D array which is the average of image, but I'm not sure how to extract the data in column "means" in this new matrix.  Because each "image is 3 lines long, I need to take the first 3 values in the 4th row in the data table (average values) and do as my 1st column, then take then 3 values in column 4, making the 2nd column, etc..".  The new 2D array should therefore all 7s.

    I'd appreciate any help to go on this task, but also a response to the problem, I am currently facing.  If I didn't explain that well, let me know and I will clear up everything that was confusing!

    It's generally a bad idea to have data sample degenerate as in this case, where each item is 7. It does not easily check if the correct order and the conversion is achieved. (Also, your second loop is yabba of LabVIEW. )

    Try something like the picture shows... (of course the constant diagram must be replaced my calculations based on the size of the input array).

  • Last row of data in a 2d array is not written, but is written using VI is next time

    Hi all

    I have problems with writing the data. I'm taking some statistics of a bunch of files .tdm and their record in a master file. I have all this down, but the last part data is not written using the program first. When I run the program immediately after, the last line of data from the first run is the first line of the recorded data. I guess that the buffer that contains the table is not be emptied at the end of the program, but I don't know how to "clear" a Board or if such a method exists (I know it does for queues, but tables are supposed to be simpler). I tried including a boot read before hand for loop because I thought that this was an option disabled by a question. This does not resolve the issue. For example, here is what may look like the data:

    1st round:

    A

    B

    C

    D

    2nd round:

    E

    A

    B

    C

    D

    I have included my code and if you see something I can do to fix this problem, please let me know.

    Thank you for your time,

    Seth

    My guess is the race condition critical you created using local variables.

    You have local variables of min table, average, max table, cycle count and names of channel that you use to write to a file.  However, the terminals are readily available that you can branch wires directly from

    The problem is the race condition.  Your local variables will be read very early in the iteration of the loop For, before any valid data was written to the terminals referring to these people.

    Don't use local variables, simply use the son.

  • sharing of database between two programs

    Hello

    I have the need to save the data to an application (I use a SQL database) and access the data of another application.
    Following a few examples, I have the following code to create the database.

    This is the code of the application that CREATES the database.
    void ApplicationUI::createDatabase() {}
    Basis of data QSqlDatabase = QSqlDatabase::addDatabase ("QSQLITE", "Database");
    Boolean success = false;
    database.setDatabaseName("./data/Database.db");

    If (database.open ()) {}
    success = true;
    } else {}
    const QSqlError error = database.lastError ();
    }

    Database.Close ();
    }

    That's what I do for create table.
    Sub ApplicationUI::createTable()
    {
    Basis of data QSqlDatabase = QSqlDatabase::database ("Database");
    ("SqlDataAccess * sqlda = new SqlDataAccess("./data/Database.db ");
    SQLDA-> run ("DROP TABLE IF EXISTS people");
    {if (!) SQLDA-> HasError())}
    } else {}
    const DataAccessError error is sqlda-> error();.
    }

    const QString createSQL = "CREATE TABLE people ().
    «name VARCHAR»
    «email VARCHAR»
    'e - mail1 VARCHAR'
    «email2 VARCHAR»
    ");";
    SQLDA-> execute (createSQL);
    {if (!) SQLDA-> HasError())}
    } else {}
    const DataAccessError error is sqlda-> error();.
    }
    }

    The first program also fills the table

    Here is the code of the OTHER application that reads the database.
    void ApplicationUI::getDATA() {}

    int recordsRead = 0;
    ("SqlDataAccess * sqlda = new SqlDataAccess("./data/Database.db ");
    const QString sqlQuery = "SELECT email, email1, email2 FROM people;"
    QVariant result = sqlda-> execute (sqlQuery);
    {If (! sqlda-> {hasError())}

    If (! result.isNull ()) {}

    List of QVariantList = result.value();
    recordsRead = list.size ();
    for (int i = 0; i)< recordsread;="" i++)="">
    Map: QVariantMap = list.at (i) .value();
    name = map ["name"] m:System.NET.SocketAddress.ToString ();
    email = map ["email"] m:System.NET.SocketAddress.ToString ();
    e-mail1 = map ["email1"] m:System.NET.SocketAddress.ToString ();
    Email2 = map ["email2"] m:System.NET.SocketAddress.ToString ();

    }
    }

    }
    const DataAccessError error is sqlda-> error();.
    QString theerror = error.errorMessage ();
    }

    The error I get, is that there is no table named "persons". Is it because the two programs are in different folders? If so, where could / should I put the database for both programs can access freely?

    Thanks for your help and your clarification.

    No, a shared folder for normal users and the users of the workspace is different, but you can access it with this line:
    QString sharedPath = QDir::currentPath() + ' shared ';

  • Convert does not reach 1%

    Hello

    The situation is like this:

    I've set up two ESXi hosts in my organization and converted in one of the physical machine, which is now in production.

    Then my license for vSphere arrived and I updated the keys and installed vCenter and all is great.

    Now, I'm trying to back up my machine on the second host using vCenter Converter and I receive the following error after you start the conversation:

    Section of VMware vCenter Converter, pid = 5320, version = version 4.2.1 = build-327369, option = released
    [2011-05-09 01:46:25.675 05448 WARNING "App"] Cannot create the writer console
    [2011-05-09 01:46:25.691 00264 info "App"] Current working directory: C:\Program VMware vCenter Converter
    [2011-05-09 01:46:25.691 00264 info "App"] Try converter_server
    [2011-05-09 01:46:25.706 00264 info "App"] [shutdownMgr, 25] Stop UFA registered handler.
    [2011-05-09 01:46:25.706 00264 info "App"] [helper, 453] Initializing the SSL context
    [2011-05-09 01:46:25.706 00264 info "Libs"] Using the libcrypto, version 9080CF
    [2011-05-09 01:46:26.441 00264 info "App"] Vmacore::InitSSL: doVersionCheck = true, handshakeTimeoutUs = 120000000
    [2011-05-09 01:46:26.441 00264 info "App"] [helper, 499] Initialization of certificates
    [2011-05-09 01:46:26.441 00264 info "App"] [task, 2062] [LRO] 32 max EIB
    [2011-05-09 01:46:26.441 00264 info "App"] [task, 2064] [LRO] 6 reserved internal LROs
    [2011-05-09 01:46:26.441 00264 info "App"] [task, 2066] [LRO] 6 reserved for short-EIB
    [2011-05-09 01:46:26.441 00264 info "App"] [task, 2068] [LRO] 12 reserved long EIB
    [2011-05-09 01:46:26.441 00264 info "App"] [task, 2080] Operational life of 86400 seconds [LRO]
    [2011-05-09 01:46:26.503 'Local' WARNING 00264] Duplicate key "hi_IN" in the file "C:\Program VMware vCenter Converter\locale\iso2win.vlcl"
    [2011-05-09 01:46:26.503 'Local' WARNING 00264] Duplicate key 'az_AZ' in the file "C:\Program VMware vCenter Converter\locale\iso2win.vlcl"
    [2011-05-09 01:46:26.503 'Local' WARNING 00264] Duplicate key 'sr_SP' in the file "C:\Program VMware vCenter Converter\locale\iso2win.vlcl"
    [2011-05-09 01:46:26.503 'Local' WARNING 00264] Duplicate key 'az_AZ' in the file "C:\Program VMware vCenter Converter\locale\isodata.vlcl"
    [2011-05-09 01:46:26.503 'Local' WARNING 00264] Duplicate key 'sr_SP' in the file "C:\Program VMware vCenter Converter\locale\isodata.vlcl"
    [2011-05-09 01:46:26.503 'Local' WARNING 00264] Duplicate key 'uz_UZ' in the file "C:\Program VMware vCenter Converter\locale\isodata.vlcl"
    [2011-05-09 01:46:26.550 00264 'Local' info] Adding locale path C:\Program VMware vCenter Converter\locale\ to local map
    [2011-05-09 01:46:26.550 00264 'Local' info] Locale subsystem initialized from C:\Program VMware vCenter Converter\locale\ with in the default locale.
    [2011-05-09 01:46:26.566 00264 info "Libs"] [ADS] Local domain: *.
    [2011-05-09 01:46:26.566 00264 info "Libs"] [ADS] IsWorkgroup: No.
    [2011-05-09 01:46:26.566 00264 info "Libs"] [ADS] Local machine: APP
    [2011-05-09 01:46:26.581 00264 info "App"] BaseScheduler initialization complete - __thiscall Sub Converter::Server:Scheduler:BaseScheduler: ("d:/build/ob/bora-327369/bora/sysimage/ufad/server/scheduler/baseScheduler.cpp:112")
    [2011-05-09 01:46:26.612 00264 info "App"] [plugin, 144] ServerPlugin Init
    [2011-05-09 01:46:26.612 00264 info "App"] Try ufa_agent
    [01:46:26.612 00264 info 'Ufa' 2011-05-09] Initializing the SSL context
    [01:46:26.612 00264 info 'Ufa' 2011-05-09] MIME type: properties = text/plain
    [01:46:26.612 00264 info 'Ufa' 2011-05-09] MIME type: text/javascript = js
    [01:46:26.612 00264 info 'Ufa' 2011-05-09] MIME type: css = text/css
    [01:46:26.612 00264 info 'Ufa' 2011-05-09] PipeName server web micro: \\.\pipe\vmware-converter-web
    [2011-05-09 00264 info 'HttpSvc.HTTPService' 01:46:26.612] Use default to nonChunkingAgents: "VMware VI Client |" VMware-customer | VMware-customer/3. * »
    [2011-05-09 00264 info 'HttpSvc.HTTPService' 01:46:26.612] Use default to agentsNeedingContentLength: 'VMware-customer '.
    [2011-05-09 00264 info 'HttpSvc.HTTPService' 01:46:26.612] Maximum size of response in the buffer is 104857600 bytes
    [2011-05-09 01:46:26.612 00264 info "HTTP server"] HTTP server created with docroots vCenter C:\Documents and Settings\All Users\Application Data\VMware\VMware Converter\docRoot, segmented responses enabled: true
    [01:46:26.612 00264 info 'Ufa' 2011-05-09] Server web created micro
    [01:46:26.612 00264 info 'Ufa' 2011-05-09] Plugin initialized
    [2011-05-09 01:46:26.628 10708 info "App"] [task, 333] [task-internal-1]-----BEGIN-----TaskManager
    [2011-05-09 01:46:26.628 00264 info "App"] Connection to the host on port 81 192.168.1.6
    [2011-05-09 01:46:26.659 11360 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.659 11360 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.659 11360 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.675 00264 info "App"] Authentication extension com.vmware.converter
    [2011-05-09 01:46:26.675 12240 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.675 12240 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.675 12240 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.675 00264 info "App"] Load all the elements of the scheduler database tables. -Sub __thiscall Converter::Server:Scheduler:BaseScheduler:LoadSchedulerItemIdMap (void) ("d:/build/ob/bora-327369/bora/sysimage/ufad/server/scheduler/baseScheduler.cpp:70")
    [2011-05-09 01:46:26.675 00264 info "App"] Load everything in the job scheduler database tables. Map point the Planner contains 0 items. -Sub __thiscall Converter::Server:Scheduler:PriorityQScheduler:LoadPriorityQ (void) ("d:/build/ob/bora-327369/bora/sysimage/ufad/server/scheduler/priorityQScheduler.cpp:196")
    [2011-05-09 01:46:26.675 00264 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [#1] [2011-05-09 01:46:26.691 06988 info "Libs"] HOSTINFO 8178756350016105 @ 2327540000Hz-> 0 Hz 1000000
    [#1] [2011-05-09 01:46:26.691 06988 info "Libs"] HOSTINFO ((x * 3779137210) > > 43) +-3513905818848
    [2011-05-09 01:46:26.691 00264 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [2011-05-09 01:46:26.691 12240 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.691 12240 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.691 12240 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 01:46:26.706 00264 info "App"] [plugin, 164] ServerPlugin Start
    [2011-05-09 00264 info 'ProxySvc' 01:46:26.706] Created proxy service: http port (81), https port (443)
    [2011-05-09 00264 info 'ProxySvc' 01:46:26.706] Created end point 81
    [2011-05-09 01:46:26.706 00264 info ' ProxySvc-443' '] vmacore/ssl/useSSLCtxPool: true
    [2011-05-09 01:46:26.706 00264 info ' ProxySvc-443' '] vmacore/ssl/serializeServerHandshake: false
    [2011-05-09 00264 info 'ProxySvc' 01:46:26.706] Created end point 443
    [2011-05-09 00264 info 'ProxySvc' 01:46:26.706] Initialized proxy service
    [2011-05-09 01:46:26.706 00264 info ' ProxySvc-81' "] Proxy: Start-up of the new Proxy service
    [2011-05-09 01:46:26.706 00264 info ' ProxySvc-443' "] Proxy: Start-up of the new Proxy service
    [01:46:26.706 00264 info 'Ufa' 2011-05-09] SOAP channel name: \\.\pipe\vmware-converter-server-soap-vc
    [2011-05-09 00264 info 'Ufa.HTTPService' 01:46:26.706] Use default to nonChunkingAgents: "VMware VI Client |" VMware-customer | VMware-customer/3. * »
    [2011-05-09 00264 info 'Ufa.HTTPService' 01:46:26.706] Use default to agentsNeedingContentLength: 'VMware-customer '.
    [2011-05-09 00264 info 'Ufa.HTTPService' 01:46:26.706] Maximum size of response in the buffer is 104857600 bytes
    [2011-05-09 01:46:26.706 00264 info 'Ufa'] doPendedPostBodyReads: false, enableChunkedResponses: true
    [2011-05-09 00264 info 'Ufa.HTTPService' 01:46:26.706] Has started the Service http: [Vmacore::System:NamedPipeServerWin32:03147 D 10 of class]
    [01:46:26.706 00264 info 'Ufa' 2011-05-09] SOAP (on the named pipe) started the \\.\pipe\vmware-converter-server-soap-vc hose. enableRemoteAccess = false nonRootAccess = true, useSSL = false
    [2011-05-09 00264 info 'HttpSvc.HTTPService' 01:46:26.706] Has started the Service http: [Vmacore::System:NamedPipeServerWin32:031455 B 0 class]
    [01:46:26.706 00264 info 'Ufa' 2011-05-09] Started Web server
    [01:46:26.706 00264 info 'Ufa' 2011-05-09] Plugin has started
    [2011-05-09 01:46:26.706 00264 info "App"] [serviceWin32, 413] vmware-converter-Server-vc service started
    [#2] [2011-05-09 01:58:53.311 12240 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [#2] [2011-05-09 01:58:54.186 07808 error "App"] Found dangling SSL error: error:00000001:lib (0): func (0): reason (1) [0]
    [#2] [2011-05-09 01:59:50.685 06988 info "App"] [agentManager, 83] [AgentManager] Install the Agent on 192.168.1.7
    [#2] [2011-05-09 02:04:47.918 00264 info "App"] Connection to the host on port 443 192.168.1.6
    [#2] [2011-05-09 02:04:47.933 00264 info "App"] Sharing session for user *-*.
    [#2] [2011-05-09 02:04:47.933 00264 info "App"] ComputeResource for vim. HostSystem:host - 17 is vim.ComputeResource:domain - s15
    [#2] [2011-05-09 02:04:47.933 00264 info "App"] ResourcePool to vim.ComputeResource:domain - s15 is vim. ResourcePool:resgroup - 16
    [#2] [2011-05-09 02:04:47.933 00264 info "App"] ComputeResource for vim. ResourcePool:resgroup - 16's vim.ComputeResource:domain - s15
    [#2] [2011-05-09 02:04:47.949 00264 info "App"] Data Center for vim.ComputeResource:domain - s15 is vim. Datacenter:Datacenter - 2
    [#2] [2011-05-09 02:04:47.949 00264 info "App"] VM for vim root folder. Datacenter:Datacenter - 2 is vim. File: Group-v3
    [#2] [2011-05-09 02:04:47.949 00264 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [#2] [2011-05-09 02:04:47.949 00264 info "App"] Connection to the host on port 443 192.168.1.6
    [#2] [2011-05-09 02:04:47.965 00264 info "App"] Sharing session for user *-*.
    [#2] [2011-05-09 02:04:47.965 00264 info "App"] Programmed timer cancelled, succeeds StopKeepAlive
    [#2] [2011-05-09 00264 info 02:04:47.965 ' vmomi.soapStub [2]'] Reset Adapter stub server TCP:192.168.1.6:443: closed
    [#2] [2011-05-09 02:04:47.965 00264 info "App"] Programmed timer cancelled, succeeds StopKeepAlive
    [#2] [2011-05-09 00264 info 02:04:47.965 ' vmomi.soapStub [3]'] Reset Adapter stub server TCP:192.168.1.6:443: closed
    [#2] [2011-05-09 02:04:47.965 00264 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [#2] [2011-05-09 02:04:47.980 00264 info "App"] ComputeResource for vim. ResourcePool:resgroup - 16's vim.ComputeResource:domain - s15
    [#2] element Planner [2011-05-09 02:04:48.027 00264 info "App"] with id = "1" created - __thiscall int Converter::Server:Scheduler: ("d:/build/ob/bora-327369/bora/sysimage/ufad/server/scheduler/priorityQScheduler.cpp:43")
    [2011-05-09 02:04:48.043 11360 info "App"] Point timer 1 to run in time 21748264
    [2011-05-09 02:04:48.058 09048 info "App"] Connection to the host on port 81 192.168.1.6
    [2011-05-09 02:04:48.058 09940 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 02:04:48.058 09940 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 02:04:48.058 09940 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 02:04:48.074 09048 info "App"] Authentication extension com.vmware.converter
    [2011-05-09 02:04:48.074 09940 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 02:04:48.074 09940 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 02:04:48.074 09940 WARNING "Libs"] SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    Certificates to host television is not complete.
    [2011-05-09 02:04:48.074 09048 info "App"] ComputeResource for vim. HostSystem:host - 17 is vim.ComputeResource:domain - s15
    [2011-05-09 02:04:48.074 09048 info "App"] ResourcePool to vim.ComputeResource:domain - s15 is vim. ResourcePool:resgroup - 16
    [2011-05-09 02:04:48.074 09048 info "App"] ComputeResource for vim. ResourcePool:resgroup - 16's vim.ComputeResource:domain - s15
    [2011-05-09 02:04:48.090 09048 info "App"] Data Center for vim.ComputeResource:domain - s15 is vim. Datacenter:Datacenter - 2
    [2011-05-09 02:04:48.090 09048 info "App"] VM for vim root folder. Datacenter:Datacenter - 2 is vim. File: Group-v3
    [2011-05-09 02:04:48.090 09048 info "App"] Connection to the host on port 443 192.168.1.6
    [2011-05-09 02:04:48.105 09048 info "App"] Sharing session for user *-*.
    [2011-05-09 02:04:48.105 09048 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [2011-05-09 02:04:48.137 09048 info "App"] [vcTask, 66] task [1] [VCTaskMap] task - 1:task - 7
    [2011-05-09 02:04:48.152 09048 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [2011-05-09 02:04:48.215 09048 info "App"] A started task "task 1" for employment = "job-7", item = "1" - __thiscall Sub Converter::Server:Job:JobProcessorImpl:StartProcessingJobs (void) ("d:/build/ob/bora-327369/bora/sysimage/lib/converter/server/job/jobProcessorImpl.cpp:350").
    [2011-05-09 02:04:48.246 03924 info "App"] [task, 333] task [1]-----BEGIN-----convert
    [2011-05-09 02:04:48.293 03924 error "App"] Found dangling SSL error: error:00000001:lib (0): func (0): reason (1) [0]
    [#3] [2011-05-09 02:05:25.777 05892 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [2011-05-09 02:06:18.308 03924 info "App"] [taskSpec, 464] task [1] [TaskMap] task - 1:task - 1
    [2011-05-09 02:06:33.698 03924 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [2011-05-09 02:09:14.369 03924 info "App"] Reuse existing VIM connecting to 192.168.1.6
    [2011-05-09 02:09:20.557 03924 error "App"] [task, 345] [LRO] Unexpected exception: converter.fault.CloneFault
    [2011-05-09 02:09:20.604 03924 info "App"] [task, 374] task [1] - ERROR - convert: converter.fault.CloneFault
    {(converter.fault.CloneFault)
    dynamicType = < unset >
    faultCause = (vmodl. NULL in MethodFault),
    Description = "Unknown Exception"
    MSG = ""
    }
    [2011-05-09 02:09:20.604 03924 info "App"] [diagnosticManager, 260] TaskInfo recovered to "converter.task.Task:task - 1" mapping "converter.task.Task:task - 1".»
    [2011-05-09 02:09:20.604 03924 info "App"] [diagnosticManager, 300] The task with id = "task 1" turned out to be a task 'recent '.
    [2011-05-09 02:09:20.604 03924 info "App"] [diagnosticManager, 314] No group of existing log not found for task with id = "task 1". The task is still 'young' so a bundle of newspapers going now is assigned.
    [2011-05-09 02:09:20.604 03924 info "App"] [diagnosticManager, 756] Recovery of the related tasks of diagnosis for the tasks of server with id = "task 1".
    [2011-05-09 02:09:20.729 12148 info "App"] Suspended 1 elements of Planner for employment (job-7) - __thiscall Sub Converter::Server:Job:JobProcessorImpl:SuspendJobAux(const_class_Converter::Server::Job::InternalJob_&,class_Converter::VdbConnection_&) ("d:/build/ob/bora-327369/bora/sysimage/lib/converter/server/job/jobProcessorImpl.cpp:823")

    Please, any ideas?

    Questions of the converter are not always fun. have you tried to install the msi covertor manually in the box to be converted and tried it this way?

    BTW I don't understand what you mean by creating a virtual machine for backup on a different host? Converter is not really designed for backup...

    Follow me @ Cloud - Buddy.com

Maybe you are looking for