<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: To DIAdem or not...? in BreakPoint</title>
    <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915070#M31301</link>
    <description>&lt;P&gt;to get results from test stand result data bases you have to use sql and vba then insert data from ATE system query&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Apr 2019 07:20:16 GMT</pubDate>
    <dc:creator>richard98</dc:creator>
    <dc:date>2019-04-15T07:20:16Z</dc:date>
    <item>
      <title>To DIAdem or not...?</title>
      <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3639673#M29275</link>
      <description>&lt;P&gt;I do have a call in to Sales and they are going to get back to me on this subject but I thought I would ask the community too.&lt;/P&gt;
&lt;P&gt;I'm coming to a decision point whether to purchase DIAdem or use some other method (SQL, VBA) to glean some data from my TestStand results databases.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First I'm a database neophyte but I am tasked to query some data from the ATE systems that write their results to Jet 4.0 (Access) databases using the TestStand 2010 sp1 Generic Insert (GI 2.x-4.0) schema.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Each ATE has it's own results DB so I would need to deal with each one separately. I know the data I am asking for is in those databases.&lt;/P&gt;
&lt;P&gt;Basically I was asked to determine how many operators used the ATE's, how many total sequences were run per year, and how much total time was spent (per year) running sequences.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I could take the time to learn VBA and query for the data and total it up in, let's say a Excel spreadsheet. I could take the time to learn SQL and do the same thing or I could spend my time learning DIAdem scripting. Either way I am going to have a learning curve ahead of me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any thoughts or comments are welcome.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2017 18:29:07 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3639673#M29275</guid>
      <dc:creator>GovBob</dc:creator>
      <dc:date>2017-06-05T18:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: To DIAdem or not...?</title>
      <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3643843#M29306</link>
      <description>&lt;P&gt;I was surprised to learn that Diadem does not ship with a plugin for Teststand database schemas, &amp;nbsp;it seems like NI are missing out on something here. So yes, it seems you are stuck with other SQL tools.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 10:59:37 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3643843#M29306</guid>
      <dc:creator>Michael_78</dc:creator>
      <dc:date>2017-06-13T10:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: To DIAdem or not...?</title>
      <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3643909#M29307</link>
      <description>&lt;P&gt;For clarity they do have a dataplugin for .mdb databases. The problem I noted is that it requires&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DataFinder Server Edition 1.1.1. which is another paid for toolkit. After talking with several folks at NI it turns out they changed the .SQL plugin so that can be used on a .MDB database. After careful consideration I've decided that DIAdem was a bit overkill for the data I want to analyse and I'm going a different route.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 13:09:56 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3643909#M29307</guid>
      <dc:creator>GovBob</dc:creator>
      <dc:date>2017-06-13T13:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: To DIAdem or not...?</title>
      <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915070#M31301</link>
      <description>&lt;P&gt;to get results from test stand result data bases you have to use sql and vba then insert data from ATE system query&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:20:16 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915070#M31301</guid>
      <dc:creator>richard98</dc:creator>
      <dc:date>2019-04-15T07:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: To DIAdem or not...?</title>
      <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915386#M31304</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Basically I was asked to determine how many operators used the ATE's&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;SELECT DISTINCT(USER_LOGIN_NAME) FROM UUT_RESULT&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;gt;&amp;gt; how many total sequences were run per year, and how much total time was spent (per year) running sequences&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;SELECT Test_Year, COUNT(ID) AS Num_Tested, SUM(EXECUTION_TIME) AS Sum_Time FROM (SELECT ID, YEAR(START_DATE_TIME) AS Test_Year, EXECUTION_TIME FROM UUT_RESULT) GROUP BY Test_Year&lt;/PRE&gt;
&lt;P&gt;It looks like you only want the data from one of the tables, so it might be a smaller task than you're thinking.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 17:44:46 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915386#M31304</guid>
      <dc:creator>jcarmody</dc:creator>
      <dc:date>2019-04-15T17:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: To DIAdem or not...?</title>
      <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915401#M31305</link>
      <description>&lt;P&gt;Thanks for the answers but that was resolved a couple of years ago.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 18:25:06 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915401#M31305</guid>
      <dc:creator>GovBob</dc:creator>
      <dc:date>2019-04-15T18:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: To DIAdem or not...?</title>
      <link>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915883#M31306</link>
      <description>&lt;P&gt;Doh!&amp;nbsp; I saw it at the top of my feed because the person before me didn't look at the date on the other posts, either.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 14:56:02 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/To-DIAdem-or-not/m-p/3915883#M31306</guid>
      <dc:creator>jcarmody</dc:creator>
      <dc:date>2019-04-16T14:56:02Z</dc:date>
    </item>
  </channel>
</rss>

