<?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: Parallel Processing in Scripting in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/5201#M5200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If JMP doesn't support multiple requests at the same time, my first thought is to place each request in a separate JSL file, then run multiple instances of JMP.&amp;nbsp; One way to do this would be launching the JSL files from a .bat file, since these do not wait for the previous command to complete before starting the next one.&amp;nbsp; You would then just need a script at the end with some kind of wait function to test periodically if all the expected output exists before doing the final data analysis and graphing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jul 2012 15:53:11 GMT</pubDate>
    <dc:creator>senatorx</dc:creator>
    <dc:date>2012-07-05T15:53:11Z</dc:date>
    <item>
      <title>Parallel Processing in Scripting</title>
      <link>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/5200#M5199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the process of putting togother a lengthy script that makes some calls to ODBC/SQL databases that can each take several minutes to run. In an ideal world I could be waiting for multiple servers to get back to me at the same time. From what I am gathering I have to stick with just running one database request after another?&lt;/P&gt;&lt;P&gt;I am running JMP 9.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 13:57:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/5200#M5199</guid>
      <dc:creator>firemandan9</dc:creator>
      <dc:date>2012-07-03T13:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing in Scripting</title>
      <link>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/5201#M5200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If JMP doesn't support multiple requests at the same time, my first thought is to place each request in a separate JSL file, then run multiple instances of JMP.&amp;nbsp; One way to do this would be launching the JSL files from a .bat file, since these do not wait for the previous command to complete before starting the next one.&amp;nbsp; You would then just need a script at the end with some kind of wait function to test periodically if all the expected output exists before doing the final data analysis and graphing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2012 15:53:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/5201#M5200</guid>
      <dc:creator>senatorx</dc:creator>
      <dc:date>2012-07-05T15:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing in Scripting</title>
      <link>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/39820#M23307</link>
      <description>&lt;P&gt;Here's a type of wait method where you attempt to address the table of interest and wait in a while loop until it appears. You could run this to catch the table when it's finally generated. I pulled part of this from another post. Remove the print statements if you like.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Data Table&lt;/SPAN&gt;( &lt;SPAN&gt;"My Table"&lt;/SPAN&gt; );&lt;/P&gt;&lt;P&gt;tableExist = &lt;SPAN&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Print&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;"It has magically appeared!"&lt;SPAN&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;tableExist = &lt;SPAN&gt;0&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Print&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;"The table does not exist"&lt;SPAN&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;While&lt;/SPAN&gt;( !tableExist,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Print&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;"The table does not exist"&lt;SPAN&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Wait&lt;/SPAN&gt;( &lt;SPAN&gt;1&lt;/SPAN&gt; );&lt;/P&gt;&lt;P&gt;Try&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Data Table&lt;/SPAN&gt;( "My Table"&amp;nbsp;);&lt;/P&gt;&lt;P&gt;tableExist = &lt;SPAN&gt;1&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Print&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;"It has magically appeared!"&lt;SPAN&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;tableExist = &lt;SPAN&gt;0&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Print&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;"The table does not exist"&lt;SPAN&gt; );&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2017 17:32:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/39820#M23307</guid>
      <dc:creator>micahthedangero</dc:creator>
      <dc:date>2017-05-31T17:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing in Scripting</title>
      <link>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/39824#M23310</link>
      <description>&lt;P&gt;I think starting with JMP 12 you have the ability to run SQL statements in the background. &amp;nbsp;Go to the scripting index and search for &lt;STRONG&gt;SQL&lt;/STRONG&gt;. &amp;nbsp;The last search result is &lt;STRONG&gt;SQL Query&lt;/STRONG&gt;. &amp;nbsp;One of the options is &lt;STRONG&gt;Run Background&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RunBackground.png" style="width: 966px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6315i270AC00F6F9FB4B0/image-size/large?v=v2&amp;amp;px=999" role="button" title="RunBackground.png" alt="RunBackground.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2017 19:44:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/39824#M23310</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-05-31T19:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Parallel Processing in Scripting</title>
      <link>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/39825#M23311</link>
      <description>&lt;P&gt;I have never looked at that. Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2017 19:46:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Parallel-Processing-in-Scripting/m-p/39825#M23311</guid>
      <dc:creator>micahthedangero</dc:creator>
      <dc:date>2017-05-31T19:46:10Z</dc:date>
    </item>
  </channel>
</rss>

