Error On-The-Fly with ProcessOneResult [Error Code: -2147024882]

TestStand 4.2.0.134
Have you seen this error before?
I have a top sequence that starts 32 executions via a process model with On-The-Fly activated.
It generates maybe 1 or 2 results per execution every 5-10 minutes and the execution is set to run for 48 hours.
On 32 UUTs, 22 had the error:
14 failed at the same time (at the 20th hour approx).
6 failed at the same time (at the 26th hour approx.)
2 failed at the same time (at the 46th hour approx.)
10 passed successfuly.
An error occurred calling 'ProcessOneResult' in 'ITSOnTheFlyReportGen' of 'zNI TestStand On-The-Fly Report Generator' Source: TSOTFRG [Error Code: -2147024882, User-defined error code.]
Do you have any ideas what I should look for or have you seen this error code before?
Are 32 execs for 48 hours might be too much for TestStand?
The log file is 769 kb at the end when the 48 hours run successfully.
Thank you.

Hi MatLaroche,
This error that you are receiving is most likely due to running out of memory on your machine as it is filling up with these hours and hours of report data.  How much RAM do you have on this machine and are you running a 32-bit or 64-bit operating system?  You could run a memory monitor which logs the memory usage over this period to observe if this is in fact correct.  One solution to consider will be to enable the Conserve Memory and Only Display Latest Results feature within report options.  This feature is described here:  http://zone.ni.com/reference/en-XX/help/370052J-01/tsref/infotopics/db_report_options_contents_tab/.  As described in the help documentation, you must enable the Discard Results or Disable Results When Not Required by Model option to use this as well.
Justin D
Applications Engineer
National Instruments
http://www.ni.com/support/

Similar Messages

  • I lost the email with my verification code on it how do I get a new verification code?

    I would like to share some of my photos via email, but when I want to share them it asks for a verification code.  I don't have the email with that verification code, how do I get that code or get a new one?

    First go to the Preferences by going to:
    Edit >> Preferences
    And look for something like this:
    Fill in your details and click OK
    Now go to the Share Icon  and follow all the steps as if you are sending a photomail or email attachment and you will get a window where you can request a new code to be resent to you.  See this picture:

  • VK12 - disappered %? how to transport the table with new tax codes?

    Hallo
    I'm changing conditions for tax codes in VK12. I have 2 questions:
    1. When I created new entries, the % sign disappears. What shoud I do with this?
    2. Should I create a transport with this changes? Or should I create all new entries with new tax codes manually in all target systems?
    Thanks for all help,
    Megy

    hi,
    normally tax code changes will be done in PRD directly.
    no need to transport
    in VK12, that is change condtion record, you will find the details of condition record right.
    then why are you going to create again.
    change what ever you want to change then and there only and proceed with your requriment.
    regards,
    balajia

  • Can't add layer markers on the fly with Mac laptop

    I've been trying to figure this out for hours now!!! I'm on a Mac Intel Core 2 Duo laptop running 10.5.6. I'm using After Effects CS3 Professional. All I want to do is RAM preview an audio file from inside a composition, and add layer markers on the fly. Apparently this is easy with a desktop using the numeric keypad. I remapped the shorcut in the Preferences text file so that "Add Marker" is now F12 - nice and easy! (and no, it's not conflicting with the the OS Dashboard shortcut - I turned that off). In any case, I tried a number of others as well. The problem is, no matter what the shortcut, when I try adding the layer marker with the shortcut the file stops playing! So annoying! I want to add a number of layer markers timed to the beat, but as soon as I do the damned RAM preview stops! I can't mark key points in the composition!! Any help would be MUCH appreciated...
    - Bryan

    Hi there
    I hope it's ok to continue this old thread - as I'm having a very similar problem, but with a PC laptop
    I want to re-map the numeric-keypad-star key so I can hit markers on the fly while ram previewing (my laptop has no numeric keypad), but I don't know what the shortcut is called in order to be able to find it to re-map it!!  Can anyone tell me what the shortcut is called?
    Also from this thread it seems even if I do re-map it may not work - can anyone tell me whether this will be the case for a PC?  I'm using a Dell Studio 1557 Core i7 with Win7 64bit, running After Effects CS4
    All advice appreciated
    Thanks
    jON

  • Renaming attachments on the fly with CFMAIL?

    One feature of our app allows our clients to send email to a
    specific contact with an attached PDF. This PDF is built from
    stitched together files in a previous step, so it has a
    dynamically-built filename.
    The filename consists of the subject, date, and some other
    info. We were adding a hash value to the end of the filename so we
    would have a unique value and avoid overwrites, but now it's
    setting off spam filters, and people aren't getting the email.
    I replaced the hash value with the timestamp, including
    milliseconds, which seems to work well enough to keep the file
    unique. This is fine for our database, but the boss wants the
    receipient to see a "friendly" version of the filename as their
    attachment. In other words, I need to strip out that other data
    (timestamp) when I send it.
    I thought there used to be a way to send attachments where
    you have the source file name and the destination file name... but
    apparently there isn't now, as far as I can see.
    Does anyone know how to do this? It seems like it would be a
    common issue. I know I could try to copy the file to the
    tempdirectory with a "Friendly" name, then send that as the
    attachment and delete it... but that seems excessive.

    Hopefully it will help me organise things. I’ve liked having twin drives on my G5. (Though in that case there’s the added advantage of the physical security of holding vital files on two real drives.) And I always intended to partition next time I got a new Mac.

  • What's the problem with this Ajax code?

    The B.cfm:
    <cfimport taglib="/tags" prefix="Tag">
    <Tag:_ImportprocessingTime>
    <!--- This tag show the time spended--->
    do some long loop......
    <!--- this only needs about 5 seconds--->
    </Tag:_ImportprocessingTime>
    the ajax code to execute the b.cfm:
    function Importxls(url,buttonid,msgid,dbffilename)
    createXMLHttpRequest();
    var url=url+"?importdbffilename="+dbffilename+"&ti="+new
    Date().getTime();
    xmlHttp.open("GET",url,true);
    xmlHttp.onreadystatechange= function()
    if (xmlHttp.readyState < 4)
    document.getElementById(msgid).innerHTML= "importing......";
    document.getElementById(buttonid).disabled=true;
    else if (xmlHttp.readyState == 4)
    if(xmlHttp.status == 200)
    document.getElementById(msgid).innerHTML=xmlHttp.responseText;
    document.getElementById(buttonid).disabled=false;
    else if (xmlHttp.status == 404)
    document.getElementById(msgid).innerHTML="URL error";
    document.getElementById(buttonid).disabled=false;
    else
    document.getElementById(msgid).innerHTML="error,xmlHttp
    state:"+xmlHttp.status+"。";
    document.getElementById(buttonid).disabled=false;
    xmlHttp.send(null);
    when I execute the b.cfm ,the spended time only about
    5 seconds and show the result right now.
    but when I execute the b.cfm through the ajax
    code,after about 60 seconds,it shows the result,why?and how
    to let it show the result after the b.cfm executed?
    Thanks a lot.

    up

  • What is the problem with this simple code?

    import javax.swing.*;
    public class TestThread extends JApplet implements Runnable
    JPanel jp;
    JLabel jb;
    public void init()
    jp=new JPanel();
    jb=new JLabel("Botton");
    getContentPane().add(jp);
    jp.add(jb);
    public static void main(String args[])
    new TestThread().start();
    public void run()
    System.out.println("Jaison");
    Y it not working...help me
    contd............
    <html>
    <head>
    </head>
    <applet
    code=TestThread.class
    width=1450
    height=1680>
    </applet>
    </html>

    Status bar says
    Applet TestThread StartedYou do know that main isn't used by applets? It will not be executed by the browser.
    Kaj

  • What is the wrong with this small code of groupitems

    var msg =""
    if(app.documents.length > 0)
    var pgItems = app.activeDocument.pageItems;
    tot_obj=pgItems.length ;
    if( pgItems.length > 0 )
      var GroupItem =app.activeDocument.groupItems;
      total_Group = GroupItem.length;
       for(var a = 0;a<total_Group;a++)
        GroupItem[a].hidden=true;

    Use this code :
    app.activeDocument.groupItems[a].hidden=true;

  • Zen Micro 5gb - Playlist on the fly with "add to selected" often does not work (AD HOC 'playlis

    I've found ad-hoc playlist made from ADD TO SELECTED often does not work. Here are other issues:?. Does not add? at all OR only adds after first song selected played2. Cannot swith from ARTISTS to SONGS w/o killing list. This will kill the ongoing list.3. If I make mistake and hit the PLAY button, it wipes out the entire list I'd already made. Any of these issues resolved in Zen Vision M?

    try reloading the firmware and if that doesnt work try opening the case and cleaning it if there is anything in there. the button may be stuck. and if that doesnt work i dont know what else to sugjest. it seemed to work for me.

  • Blu-ray error: "device error", Code "3", Note: "AS_StorageError = -97064

    Hello,
    I am becoming increasingly frustrated with Encore as it now seems that I cannot burn a bluray to a disc. I would love to be able to talk to someone in support at Adobe but that does't seem to be an option. I have attempted to burn a video that is 18.45GB (transcoded) to a 25GB BD-R disc with the following error received on both attempts:
    "Blu-ray error: "device error", Code "3", Note: "AS_StorageError = -97064"
    I don't understand this error because there should be plenty of room on the disc? I also had an issue a few weeks ago with Encore preventing me from burning a 20.4GB transcoded movie onto a 25GB disc. This may be unrelated and I am aware of the issues in Encore regarding the calculation of file size, but why am I now experiencing issues all the sudden?
    My configuration:
    Mid-2012 MacPro
    OSx 10.8.5
    Adobe Creative Suite CS5.5 (Encore CS5.1)
    Internal MCE Technologies Blu-ray burner
    I appreciate any help and support!!

    The Code 3 AS_StorageError comes in many variations.
    Google: encore "AS_StorageError=-97060" and you'll find a bunch issues. Now replace the 97060 with your specific code (97064) and you'll see there are no finds other than your thread.
    These all appear to have physical storage, hard drive, or media issues. Keep in mind that for Blu-ray especially, Encore uses a huge amount of temporary storage.

  • Nokia E7 Error Code

    Hi mate how's it going.? I have a problem with my nokia e7, I have a lock code on the phone, the original code is 12345 and I have changed it, I got my phone on wednesday and I used it through out the day, with he lock code on, and at night I went to sleep and I turned the phone off and as I turned it on next morning it asked for the lock code and I typed it in and it said code error, I tried the original code but still didin't work, I called nokia they said leave it off for 24hours and I did but still same problem, I'm going to have to send the phone back to nokia on tuesday but I wanted to know will anyone know how to sort this problem out, I've tried the 8second power off button reset and that didn't make a difference, will any one know, if so please message me because I really need help. Reply as soon as please. Thank you for reading this.

    you can try a hard reset, but it will wipe EVERYTHING off the phone except the OS, including any media or programmes on E !! Should solve the code problem though, but you'll have to completely set up the phone from scratch !
    If you can't use *#7370# the same 3 finger salute as N8 works
    /t5/Nseries-and-S60-Smartphones/How-To-Hard-Reset-N8/m-p/772128
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Convert the signed message into base64 code in file receiver adapter

    Hi,
    I have 2 sequence steps in my scenario.
    Step1
    I want to convert the message with signed certifcates and send the file with  base 64 code format.
    Solu:
    1.I deployed the certificate in file adapter (The corresponding key/certificate pair must previously be saved in a keystore view of the J2EE server by using the Visual Administrator)
    2.for to change the File type content to base 64 code format .
    solu:
    File type in receiver communication channel is Binary.
    please suggest what value i need  to provide below
    anonymizer.encoding = ?(using the XMLAnonymizerBean in the module tab giving the value
    Step2.
    after that i wantt to pick up the file with base 64 code format (Which was created in step 1) and place the content to field with xsd type base64 Binary .
    for this we can pick up using file adapte or we need to use any module in the sender file module tab of the communication channel?
    Please suggest.

    HI Hyma,
    As Stefan specifyed already as per my knowledge we dont have any standard procedure for all the requirements you specified.....we need to go for module in the adapter.
    Cheers!!!
    Naveen.

  • How do i adjust color in a pdf on the fly?

    i need to pull back the yellow throughout a 100 page pdf.  The color in the pdf prints perfectly now , but client wants to see one if yellow was pulled back 10%. there has to be a fast and dirty way  to pint one on the fly with adjusted colors from my laser printer

    I don't need the ICC profiles. That is what i am trying to avoid. I feel
    like i have done this before what about through the laser print engine. I a
    am using a efi  Fiery Command WorkStation
    5<http://w3.efi.com/Fiery/Products/CWS5>
    On Mon, Mar 4, 2013 at 12:55 PM, Test Screen Name

  • [Partially solved] AwesomeWM - Hide borders on the fly

    Hello there!
    I'm looking for a way to hide 1px borders from selected ( or all ) windows on the fly, with the keystroke, just like I can hide and show statusbar with alt+b thanks to
    awful.key({ modkey }, "b", function () mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible end),
    Is there similar function for borders, or maybe some workaround?
    Some win32 games that must run in windowed mode could benefit from it very much, as well as cairo-dock that runs great, except that borders are drawn around its every instance.
    Thanks in advance!
    Last edited by 0x29a (2014-11-13 10:28:10)

    Ha! Good thinking!
    This worked (wmctrl save lifes!):
    properties = { below = true }},
    { rule = { name = "cairo-dock" },
    properties = { border_width = 0 } },
    { rule = { name = "cairo-dock-sub" },
    properties = { border_width = 0 } },
    Last edited by 0x29a (2014-11-13 10:27:40)

  • Instantiate on the fly

    How do I instantiate a new object reference on the fly?
    ex:
    class1 reference would be in the source code as:
    myclass class1;
    this class would be instantiated in the source code as:
    class1 = new myclass();
    Now later in the program I want to instantiate a
    new object of myclass but I don't have a reference
    like "class2" predefined so I can't do something like:
    class2 = new myclass();
    Is there any way I can create the new reference "class2" on the fly?

    Thanks Plucien for the reply.
    myclass someObject = (myclass) class.forName(nextclass).newInstance();
    Very interesting code! I'll try it.
    You're right I should have explained what I'm trying to achieve before
    just asking for help.
    I have a class that is drawing a line in a Canvas. The user is asked
    to click on a Button to draw more lines. Every line is an instantiation of a class. I don't know how many times the user will click on the Button so I have to instantiate classes and references on the fly.
    Will your code example do this?

Maybe you are looking for

  • OWSM: How to use Generic Key in Credential Store 11g

    Hi there, I am facing the following issue with the Weblogic Credential Store Framework (CSF): Context: I have a web service exposed somewhere in a Tomcat server. This service is not secured, initially it was, but the idea was to deport it to a mediat

  • Encore is transcoding DVD legal m2v file

    Avi converted to m2v( Elementary Stream video only (720x480 NTSC) with TMPGEnc 4.0 XPress. Well I import the file to Encore CS3 (im on XP) and it imports fine but once I build the dvd it transcodes it....(settings for Blu-ray and DVD are on Automatic

  • My L key dose not work in normaL

    it onLy works when you press shift and L but it works on other user any ideas ?

  • FTP error to windows server

    Hi team, i m trying to ftp a file on one of the windows server via Publisher.But i get this error. oracle.apps.xdo.servlet.scheduler.ProcessingException: java.lang.StringIndexOutOfBoundsException at oracle.apps.xdo.servlet.scheduler.XDOJob.deliver(XD

  • Multiple wireless speakers

    Can I connect multiple sets of wireless speakers to 1 Airport Express or do I have to have a Airport express for every pair of wireless speakers?