<?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: SQL temporary tables (phisical, local and global) does not return data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254716#M850697</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pl Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT x,y&lt;/P&gt;&lt;P&gt;INTO ##temp&lt;/P&gt;&lt;P&gt;FROM tab;&lt;/P&gt;&lt;P&gt;sql select x,yfrom ##temp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Drop table ##temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Mar 2017 14:49:22 GMT</pubDate>
    <dc:creator>sasiparupudi1</dc:creator>
    <dc:date>2017-03-09T14:49:22Z</dc:date>
    <item>
      <title>SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254702#M850677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone.&lt;/P&gt;&lt;P&gt;Does anyone knows a workaround to make this query to return data to QV? It works when running on SQL, but returns no data from QV load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hints&lt;/P&gt;&lt;P&gt;1) Creating SP is not a solution due SQL permission/restrictions&lt;/P&gt;&lt;P&gt;2) SQL and connection is fine. It works when query does not create temp tables (phisical, #local or ##global ones).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test:&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;select top 5 *&lt;/P&gt;&lt;P&gt;into ##tmp&lt;/P&gt;&lt;P&gt;from &amp;lt;table&amp;gt; with(nolock)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ##tmp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254702#M850677</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254703#M850678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Creates a temporary table in the Qlikview script itself:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sql&lt;/P&gt;&lt;P&gt;create table #table (.......&lt;/P&gt;&lt;P&gt;insert into &lt;SPAN style="font-size: 13.3333px;"&gt;#table&lt;/SPAN&gt; ........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 17:50:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254703#M850678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T17:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254704#M850679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tanks for your reply Marcio, but still same situation: No data is obtained by QV using your syntax. Running in SQL is fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;create table #temp (&lt;/P&gt;&lt;P&gt;&amp;nbsp; fechaalta datetime,&lt;/P&gt;&lt;P&gt;&amp;nbsp; fechabaja datetime)&lt;/P&gt;&lt;P&gt;insert into #temp (fechaalta, fechabaja)&lt;/P&gt;&lt;P&gt;select top 10 fechaalta, fechabaja&lt;/P&gt;&lt;P&gt;from dw_suscripciones with(nolock)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from #temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 18:01:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254704#M850679</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T18:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254705#M850680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you entering the connection string?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 18:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254705#M850680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T18:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254706#M850681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, connection string is used and connection is successful. &lt;/P&gt;&lt;P&gt;All queries that does not create or use a temporary table works fine. This, for exaple, works OK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;test:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;select top 5 *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from &amp;lt;table&amp;gt; with(nolock)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 18:28:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254706#M850681</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T18:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254707#M850682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO DatabaseName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL&lt;/P&gt;&lt;P&gt;SELECT TOP 10 fechaalta, fechabaja&lt;/P&gt;&lt;P&gt;INTO ##temp&lt;/P&gt;&lt;P&gt;FROM dbo.dw_suscripciones with(nolock)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;select * from #temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 18:32:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254707#M850682</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-03-08T18:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254708#M850684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using this CS: &lt;STRONG&gt;OLEDB CONNECT&lt;/STRONG&gt; TO [Provider=SQLOLEDB.1;Persist Security Info=True;User ID=&amp;lt;user&amp;gt;;Initial Catalog=&amp;lt;IC&amp;gt;;Data Source=&amp;lt;datasource&amp;gt;;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=&amp;lt;workstationid&amp;gt;;Use Encryption for Data=False;Tag with column collation when possible=False] (XPassword is &amp;lt;xpassword&amp;gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change to&amp;nbsp; this CS: &lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;OLEDB CONNECT32&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; TO [Provider=SQLOLEDB.1;Persist Security Info=True;User ID=&amp;lt;user&amp;gt;;Initial Catalog=&amp;lt;IC&amp;gt;;Data Source=&amp;lt;datasource&amp;gt;;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=&amp;lt;workstationid&amp;gt;;Use Encryption for Data=False;Tag with column collation when possible=False] (XPassword is &amp;lt;xpassword&amp;gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same result: No data in QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your feedback!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 18:39:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254708#M850684</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T18:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254709#M850686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a situation of this, but not in an application.&lt;/P&gt;&lt;P&gt;Temporary table I store on a qvd, and do qvd load in the application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 18:39:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254709#M850686</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T18:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254710#M850687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When adding last row for saving "test" into "test.qvd", an "Table not found" error jumps when I run the script. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;test:&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL &lt;/P&gt;&lt;P&gt;use ubbiwarehouse&lt;/P&gt;&lt;P&gt;create table ##temp (&lt;/P&gt;&lt;P&gt;&amp;nbsp; fechaalta datetime, &lt;/P&gt;&lt;P&gt;&amp;nbsp; fechabaja datetime)&lt;/P&gt;&lt;P&gt;insert into ##temp (fechaalta, fechabaja)&lt;/P&gt;&lt;P&gt;select top 10 fechaalta, fechabaja&lt;/P&gt;&lt;P&gt;from dw_suscripciones with(nolock)&lt;/P&gt;&lt;P&gt;select * from ##temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;STORE test into test.qvd(qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 18:43:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254710#M850687</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T18:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254711#M850689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;This is the exact form I used.&lt;/P&gt;&lt;P&gt;I just do not use the TOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;SQL&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 10pt;"&gt;create table #temp (&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 10pt;"&gt;fechaalta datetime,&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 10pt;"&gt;fechabaja datetime)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;insert into #temp &lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 10pt;"&gt;select top 10 fechaalta, fechabaja &lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit; font-size: 10pt;"&gt;from dbo.dw_suscripciones with(nolock)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;test:&lt;/P&gt;&lt;P style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit;"&gt;LOAD *;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;select * from #temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;STORE test into test.qvd(qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 19:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254711#M850689</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-08T19:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254712#M850690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange. It worked for me. Can you send us your actual script you are trying to use? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 19:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254712#M850690</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-03-08T19:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254713#M850692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure. Here it is&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:21:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254713#M850692</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-09T14:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254714#M850694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, same result. Weird!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:22:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254714#M850694</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-09T14:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254715#M850695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this exact code? Use your correct usrname and password though. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT TO [Provider=SQLOLEDB.1;Persist Security Info=True;User ID=&amp;lt;id&amp;gt;;Initial Catalog=&amp;lt;catalog&amp;gt;;Data Source=&amp;lt;dc&amp;gt;;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=&amp;lt;wid&amp;gt;;Use Encryption for Data=False;Tag with column collation when possible=False] (XPassword is &amp;lt;pwd&amp;gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;SELECT TOP 100 fechaalta, fechabaja&lt;/P&gt;&lt;P&gt;INTO ##temp&lt;/P&gt;&lt;P&gt;FROM dw_suscripciones with(nolock);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ##temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:36:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254715#M850695</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-03-09T14:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: SQL temporary tables (phisical, local and global) does not return data</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254716#M850697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pl Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT x,y&lt;/P&gt;&lt;P&gt;INTO ##temp&lt;/P&gt;&lt;P&gt;FROM tab;&lt;/P&gt;&lt;P&gt;sql select x,yfrom ##temp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Drop table ##temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 14:49:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-temporary-tables-phisical-local-and-global-does-not-return/m-p/1254716#M850697</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2017-03-09T14:49:22Z</dc:date>
    </item>
  </channel>
</rss>

