<?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: Importing SQL using a temp table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11767#M11271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Brian that was really informative.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it the same issue that possibly causes stored procedures to fail as well?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Apr 2015 14:35:37 GMT</pubDate>
    <dc:creator>vince_faller</dc:creator>
    <dc:date>2015-04-07T14:35:37Z</dc:date>
    <item>
      <title>Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11760#M11264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having a difficult time using Stored Procedures and Temp tables in JMP 11.2.1.&amp;nbsp; I simply get no return&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;db = Create database Connection("DRIVER=SQL Server;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SERVER=localserver\SQLEXPRESS;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATABASE=Test"&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;Execute SQL(db, &lt;/P&gt;&lt;P&gt;&amp;nbsp; "&lt;/P&gt;&lt;P&gt;&amp;nbsp; CREATE TABLE #Test ( ID int)&lt;/P&gt;&lt;P&gt;&amp;nbsp; Insert INTO #Test (ID)&lt;/P&gt;&lt;P&gt;&amp;nbsp; VALUES (1), (2), (3), (4), (5)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT *&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM #Test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DROP TABLE #Test&lt;/P&gt;&lt;P&gt;&amp;nbsp; ",&lt;/P&gt;&lt;P&gt;&amp;nbsp; ":-("&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close database connection(db);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This problem has plagued me for some time.&amp;nbsp; From the looks of it SAS can do it so I don't think it's an issue with ODBC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 18:58:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11760#M11264</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2015-04-02T18:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11761#M11265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try separating out each SQL statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;db &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: #0000dd;"&gt;Create database Connection&lt;/SPAN&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt;"DRIVER=SQL Server;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt; SERVER=localserver\SQLEXPRESS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt; DATABASE=Test"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;)&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;sql1 &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt;"CREATE TABLE #Test ( ID int)"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000dd;"&gt;Execute SQL&lt;/SPAN&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;db&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt; sql1&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;sql2 &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt;"Insert INTO #Test (ID) VALUES (1), (2), (3), (4), (5)"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000dd;"&gt;Execute SQL&lt;/SPAN&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;db&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt; sql2&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;sql3 &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt;"SELECT * FROM #Test"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000dd;"&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 13.3333330154419px;"&gt;dt = &lt;/SPAN&gt;Execute SQL&lt;/SPAN&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;db&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt; sql3&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt;"#Test"&lt;/SPAN&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;)&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;sql4 &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; color: purple;"&gt;"DROP TABLE #Test"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000dd;"&gt;Execute SQL&lt;/SPAN&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;db&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt; sql4&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: #0000dd;"&gt;close database connection&lt;/SPAN&gt;&lt;STRONG style="color: black; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; color: black;"&gt;db&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 18:22:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11761#M11265</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2015-04-03T18:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11762#M11266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like it gets rid of it as soon as the Execute is finished.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name '#Test'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name '#Test'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Microsoft][ODBC SQL Server Driver][SQL Server]Cannot drop the table '#Test', because it does not exist or you do not have permission. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 18:45:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11762#M11266</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2015-04-03T18:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11763#M11267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not a SQL server expert - I mostly use Oracle.&amp;nbsp; It appears that SQL server doesn't like the name of your table.&amp;nbsp; Try Test instead of #Test.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you validated the SQL commands in a SQL Server console?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 20:23:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11763#M11267</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2015-04-03T20:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11764#M11268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without # wouldn't be a temp table.&amp;nbsp; &lt;BR /&gt;It works correctly in SQL SERVER.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 16:47:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11764#M11268</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2015-04-06T16:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11765#M11269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll have to defer to the SQL Server experts on this one then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 18:12:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11765#M11269</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2015-04-06T18:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11766#M11270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry about the delayed reply, but I wanted to do some investigation on this.&amp;nbsp; Unfortunately this seems to be an issue with the Microsoft SQL Server ODBC drivers (both Native Client and Office version).&amp;nbsp; The table creation is failing silently when we submit the SQL.&amp;nbsp; With a driver like Actual Technologies SQL Server driver for the Mac, this succeeds just fine.&amp;nbsp; I know in older versions of JMP this would work, because at the time we were not enforcing ODBC 3.0.&amp;nbsp; This level is required to utilize block fetching within SQL Server and other database vendors.&amp;nbsp; Block fetching makes retrieval of large tables much, much faster.&amp;nbsp; However, with this comes the failing of TEMP tables.&amp;nbsp; This initialization is done at startup time for JMP, so it is really not possible to selectively disable it for TEMP tables, even if we could parse the SQL to detect the TEMP table usage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish I could give you better news.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian Corcoran&lt;/P&gt;&lt;P&gt;JMP Development&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 14:20:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11766#M11270</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2015-04-07T14:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11767#M11271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Brian that was really informative.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it the same issue that possibly causes stored procedures to fail as well?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 14:35:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11767#M11271</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2015-04-07T14:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11768#M11272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not aware of a problem with stored procedures.&amp;nbsp; I was able to get one working here, although we don't have a lot of good examples on SQL Server.&amp;nbsp; I know quoting is a big issue.&amp;nbsp; What are you seeing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 15:05:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11768#M11272</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2015-04-07T15:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11769#M11273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Brian, I must have just been calling it wrong.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2015 15:37:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11769#M11273</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2015-04-09T15:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11770#M11274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN style="color: #575757; text-decoration: line-through;"&gt;It might not be your fault.&amp;nbsp; There is a bug in JMP 12 causing stored procedures not to return any rows to JMP (I'm frankly not sure how Brian got one to work).&amp;nbsp; It will be fixed in the 12.1 maintenance release, which should be out in a few months.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;UPDATE&lt;/SPAN&gt;:&amp;nbsp; I was confused.&amp;nbsp; The bug regarding stored procedures not returning any rows was actually *not* in JMP 12 - it was introduced and fixed within the JMP 12.1 cycle.&amp;nbsp; So you may need to look at your stored procedure code.&amp;nbsp; We have seen scenarios where a table is created and then selected from within a single stored procedure where the rows do not get returned to JMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2015 20:17:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11770#M11274</guid>
      <dc:creator>Eric_Hill</dc:creator>
      <dc:date>2015-04-09T20:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11771#M11275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the explanation.&amp;nbsp; However, I don't like how this works.&amp;nbsp; I should &lt;SPAN style="font-size: 13.3333px;"&gt;simply&lt;/SPAN&gt; be able to take any query that runs fine in other applications, and see/expect the same result when ran within JMP/JSL.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've read though this thread and one thing is clear... the workaround discussed, splitting out all temp tables into separate queries, is NOT a good solution for us JSL Developers.&amp;nbsp; I have a large, older query that works just fine and it will literally take me hours to split it out.&amp;nbsp; What's the point of that?&amp;nbsp; How is this the preferred method?&amp;nbsp; I also noticed that in my first query split attempt, JMP isn't loading OIDs into the new Data Table.&amp;nbsp;&amp;nbsp; So I'm not really sure if I can split out this query.&amp;nbsp; If I continue, I can't join on a blank OID column....&amp;nbsp; When I run this identical query portion through SQL Server, my column does have data. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I was also surprised that this topic was &lt;/SPAN&gt;difficult&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; to find -it took a few Google searches.&amp;nbsp; Limitations should be clearly stated in the JSL Manual, but this is the first I'm reading it.&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I specifically wrote several helper functions -which now aren't very helpful.&amp;nbsp; Now I'm realizing it was a waste of time.&amp;nbsp; It will actually be faster for me to use another Application to write to csv, and have JMP load that.&amp;nbsp; This software is not cheap, so I'd expect Temp Tables/SQL to work in JMP instead of needing an external app to save me time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;At the very least, I'd expect this application to have better notifications.&amp;nbsp; If JMP detects temp table usage either within JSL or the "Open Table &amp;gt; Advanced" Platform, maybe a message &lt;/SPAN&gt;should&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; be sent to the developer to inform them that JMP cannot handle the operation...?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;This thread doesn't appear active anymore... Does SAS/JMP plan on fixing this?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2016 21:12:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11771#M11275</guid>
      <dc:creator>sfayer0</dc:creator>
      <dc:date>2016-07-06T21:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11772#M11276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've noticed that saving the results from each query portion as literal JMP Data Tables, and then Joining them manually through within JSL seems to work some of the time.&amp;nbsp;&amp;nbsp; It can really eat up your time though, but you'll be able to keep the results active until you run a Close Data Table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2016 21:15:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11772#M11276</guid>
      <dc:creator>sfayer0</dc:creator>
      <dc:date>2016-07-06T21:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11773#M11277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The way I understood it, this isn't on the JMP side to fix.&amp;nbsp; The problem is on Microsoft's side in they way their drivers for ODBC 3.0 call it.&amp;nbsp;&amp;nbsp; They could possibly try to detect #Tables as you said, but I don't think I'd want to interrupt a script to tell me that my SQL is written in an unacceptable fashion.&amp;nbsp; Passing something to the log I could see being useful though.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2016 21:23:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11773#M11277</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2016-07-06T21:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Importing SQL using a temp table</title>
      <link>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11774#M11278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp; Would it make sense to look for older ODBC 2.0 downloads?&amp;nbsp; I haven't had much luck yet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2016 21:52:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Importing-SQL-using-a-temp-table/m-p/11774#M11278</guid>
      <dc:creator>sfayer0</dc:creator>
      <dc:date>2016-07-06T21:52:47Z</dc:date>
    </item>
  </channel>
</rss>

