<?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 API QUESTION DROP TABLE in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180229#M1328627</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jordi ,&lt;/P&gt;&lt;P&gt;If drop all tables the document (.qvw) useful zero only schema&lt;/P&gt;&lt;P&gt;Left macro for clear data &amp;amp; save document , to apply OnClose&lt;/P&gt;&lt;P&gt;Good luck, from Spain, Luis (0034657486722)&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/12/7827.Cleaning.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/12/7827.Cleaning.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Mar 2011 20:49:14 GMT</pubDate>
    <dc:creator>llauses243</dc:creator>
    <dc:date>2011-03-09T20:49:14Z</dc:date>
    <item>
      <title>API QUESTION DROP TABLE</title>
      <link>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180225#M1328614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a qvw file only for reload and execute macros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After execute all I want to drop all tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have that sub but i don't know how ho drop tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Droptables&lt;/P&gt;&lt;P&gt;set doc=ActiveDocument&lt;/P&gt;&lt;P&gt;for i=0 to doc.GetTableCount-1&lt;/P&gt;&lt;P&gt;name = doc.GetTableName(i)&lt;/P&gt;&lt;P&gt;'doc.deletetable(name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180225#M1328614</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>API QUESTION DROP TABLE</title>
      <link>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180226#M1328618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you do it in the script:&lt;/P&gt;&lt;P&gt;DROP TABLE YourTable;&lt;BR /&gt;or&lt;BR /&gt;DROP TABLES YourTable1, YourTable2;&lt;/P&gt;&lt;P&gt;HTH&lt;BR /&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2011 10:09:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180226#M1328618</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2011-03-04T10:09:20Z</dc:date>
    </item>
    <item>
      <title>API QUESTION DROP TABLE</title>
      <link>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180227#M1328623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Not sure you can do this via the API. However, what is stopping you doing it at the end of your script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Mar 2011 10:10:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180227#M1328623</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2011-03-04T10:10:14Z</dc:date>
    </item>
    <item>
      <title>API QUESTION DROP TABLE</title>
      <link>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180228#M1328625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after reload, I'm executing a Macro that is doing some export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that, I want to clear all the data and save the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File is loading from another QVW and it's near 2 Gigs, and I don't want to have all the data on the file because it's reloading every day and i don't need the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Mar 2011 15:58:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180228#M1328625</guid>
      <dc:creator />
      <dc:date>2011-03-09T15:58:18Z</dc:date>
    </item>
    <item>
      <title>API QUESTION DROP TABLE</title>
      <link>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180229#M1328627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jordi ,&lt;/P&gt;&lt;P&gt;If drop all tables the document (.qvw) useful zero only schema&lt;/P&gt;&lt;P&gt;Left macro for clear data &amp;amp; save document , to apply OnClose&lt;/P&gt;&lt;P&gt;Good luck, from Spain, Luis (0034657486722)&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/12/7827.Cleaning.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/12/7827.Cleaning.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Mar 2011 20:49:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180229#M1328627</guid>
      <dc:creator>llauses243</dc:creator>
      <dc:date>2011-03-09T20:49:14Z</dc:date>
    </item>
    <item>
      <title>API QUESTION DROP TABLE</title>
      <link>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180230#M1328628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Luis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer but How I can execute macro OnClose (I don't have that option to select on document propierties)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos desde Barcelona.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 09:00:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/API-QUESTION-DROP-TABLE/m-p/180230#M1328628</guid>
      <dc:creator />
      <dc:date>2011-03-10T09:00:26Z</dc:date>
    </item>
  </channel>
</rss>

