<?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: Table not found when trying to store QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304509#M406184</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do with Square Bracket&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;Store &lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;[&lt;/SPAN&gt;CELLC_RECHARGE_MONTHLY&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;]&lt;/SPAN&gt; into D:\QlikView\QVData\QVD\MONTHLY_QVDs\CELLC_RECHARGE_SQL_EXTRACT_2016-1.qvd&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Apr 2017 06:03:18 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2017-04-12T06:03:18Z</dc:date>
    <item>
      <title>Table not found when trying to store QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304508#M406183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See below is my script i run to split my history data to qvd's. But when i try to store the table to a qvd it gives an error that the table is not found. What am i missing as this exact same script runs fine with some of my other data?&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;Let INI = now();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub create_qvd_Monthly(t,q)&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (q = '') then&lt;/P&gt;&lt;P&gt;&amp;nbsp; q = t&lt;/P&gt;&lt;P&gt;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;&amp;nbsp; let n = NoOfRows('$(t)');&lt;/P&gt;&lt;P&gt;&amp;nbsp; let h = now();&lt;/P&gt;&lt;P&gt;&amp;nbsp; Tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp; Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(t)' as Table,&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(q)'&amp;amp;'.qvd' as [Archived QVD],&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(n)' as [RecordCount],&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(h)' as [Datestamp]&lt;/P&gt;&lt;P&gt;&amp;nbsp; autogenerate(1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Store $(t) into D:\QlikView\QVData\QVD\MONTHLY_QVDs\$(q).qvd;&lt;/P&gt;&lt;P&gt;&amp;nbsp; drop table $(t);&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL Connection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[CELLC_RECHARGE_SQL_EXTRACT_MONTHLY]:&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt; SELECT [SEQ_NO]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[FILE_NO]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[MSISDN]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[SHORT_ICCID]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[FIRST_ACTIVITY_DATE]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ,CONVERT(VARCHAR(10),[RECHARGE_DATE],20) as [RECHARGE_DATE]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[VOUCHER_DESC]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[RECHARGE_AMOUNT]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[MANUF_ID]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[DEBTOR_SFID]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[SITE_SFID]&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM [GFMSAC].[dbo].[S_DAILY_RECHARGE];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR year = 2016 to 2017&lt;/P&gt;&lt;P&gt;FOR month = 1 to 12 &lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;[&lt;SPAN style="color: #ff0000;"&gt;CELLC_RECHARGE_MONTHLY&lt;/SPAN&gt;]:&lt;/P&gt;&lt;P&gt;LOAD SEQ_NO, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILE_NO, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MSISDN,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SHORT_ICCID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIRST_ACTIVITY_DATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECHARGE_DATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VOUCHER_DESC,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECHARGE_AMOUNT,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MANUF_ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DEBTOR_SFID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SITE_SFID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; resident CELLC_RECHARGE_SQL_EXTRACT_MONTHLY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where Year(RECHARGE_DATE) = $(year) and Month(RECHARGE_DATE) = $(month);&lt;/P&gt;&lt;P&gt;call create_qvd_Monthly ('&lt;SPAN style="color: #ff0000;"&gt;CELLC_RECHARGE_MONTHLY&lt;/SPAN&gt;','CELLC_RECHARGE_SQL_EXTRACT_$(year)-$(month)');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; NEXT&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt; NEXT&lt;/P&gt;&lt;P&gt;DROP Table CELLC_RECHARGE_SQL_EXTRACT_MONTHLY;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See below error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Table not found error&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Table 'CELLC_RECHARGE_MONTHLY' not found&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Store CELLC_RECHARGE_MONTHLY into D:\QlikView\QVData\QVD\MONTHLY_QVDs\CELLC_RECHARGE_SQL_EXTRACT_2016-1.qvd&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 05:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304508#M406183</guid>
      <dc:creator>stevietm</dc:creator>
      <dc:date>2017-04-12T05:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when trying to store QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304509#M406184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do with Square Bracket&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;Store &lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;[&lt;/SPAN&gt;CELLC_RECHARGE_MONTHLY&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;]&lt;/SPAN&gt; into D:\QlikView\QVData\QVD\MONTHLY_QVDs\CELLC_RECHARGE_SQL_EXTRACT_2016-1.qvd&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 06:03:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304509#M406184</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-12T06:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when trying to store QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304510#M406185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope still the same problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 06:29:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304510#M406185</guid>
      <dc:creator>stevietm</dc:creator>
      <dc:date>2017-04-12T06:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when trying to store QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304511#M406186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add noconcatenate to the table below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[&lt;SPAN style="color: #ff0000;"&gt;CELLC_RECHARGE_MONTHLY&lt;/SPAN&gt;]:&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;LOAD SEQ_NO, ......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 06:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304511#M406186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-12T06:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when trying to store QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304512#M406187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Success thanks a million. Still don't know why some of my other tables runs fine without the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Noconcatenate&lt;/SPAN&gt;.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 06:38:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-trying-to-store-QVD/m-p/1304512#M406187</guid>
      <dc:creator>stevietm</dc:creator>
      <dc:date>2017-04-12T06:38:10Z</dc:date>
    </item>
  </channel>
</rss>

