<?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: How does Inline keywork works in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438661#M163517</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resident always refer to a previously loaded table.&lt;/P&gt;&lt;P&gt;if&amp;nbsp; you want to make use of the existing table we go for resident .&lt;/P&gt;&lt;P&gt;remember that table should alwasy exists before using resident...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Nov 2012 18:01:30 GMT</pubDate>
    <dc:creator>shree909</dc:creator>
    <dc:date>2012-11-15T18:01:30Z</dc:date>
    <item>
      <title>How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438654#M163510</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;I am writing the below thing in my script. &lt;STRONG&gt;As per my knowledge this will create a dummy table with data.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zip_code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;123456789&lt;/P&gt;&lt;P&gt;112233445&lt;/P&gt;&lt;P&gt;111222333&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But can I manipulate or access this data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example as per a discussion going on how to extract the first 5 numbers form a zip code(zip1) and last 4 numbers(zip2).(I want to create a table with zip1 and zip2 as my columns)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how can i achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sujeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:38:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438654#M163510</guid>
      <dc:creator />
      <dc:date>2012-11-15T17:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438655#M163511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Inline just means that the data is specific inline directly after the INLINE keyword between square brackets. It loads data in a table just as a load from a qvd file or from an &lt;/P&gt;&lt;P&gt;excel file does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZipTable:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;left(zip_code,5) as zip5,&lt;/P&gt;&lt;P&gt;right(zip_code,4) as zip4 &lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;zip_code&lt;/P&gt;&lt;P&gt;123456789&lt;/P&gt;&lt;P&gt;112233445&lt;/P&gt;&lt;P&gt;111222333&amp;nbsp; &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438655#M163511</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-11-15T17:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438656#M163512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [ &lt;/P&gt;&lt;P&gt;zip_code &lt;/P&gt;&lt;P&gt;123456789&lt;/P&gt;&lt;P&gt;112233445&lt;/P&gt;&lt;P&gt;111222333&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;zipcode as zip&lt;/P&gt;&lt;P&gt;left (zipcode ,5) as zipcode5&lt;/P&gt;&lt;P&gt;right zipcode,4) as zipcode 4&lt;/P&gt;&lt;P&gt;resident&amp;nbsp; tmp;&lt;/P&gt;&lt;P&gt;drop table tmp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:44:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438656#M163512</guid>
      <dc:creator>shree909</dc:creator>
      <dc:date>2012-11-15T17:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438657#M163513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Sujeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:46:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438657#M163513</guid>
      <dc:creator />
      <dc:date>2012-11-15T17:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438658#M163514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inline table is a table which loads in the QVW application created and maintain in application and we are able to create a QVD of this inline tables it is used to create when there is small amount of data we have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are able to create a table like this also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * INLINE &lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;zip_code&lt;/P&gt;&lt;P&gt;123456789&lt;/P&gt;&lt;P&gt;112233445&lt;/P&gt;&lt;P&gt;111222333 &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;left(zip_code,5) as zip5,&lt;/P&gt;&lt;P&gt;right(zip_code,4) as zip6&lt;/P&gt;&lt;P&gt;Resident Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438658#M163514</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2012-11-15T17:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438659#M163515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understood the concept but still one more doubt about what is meaning of "resident tmp" and why we use the syntax like this. As per the previous explanation &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;ZipTable:&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;LOAD *,&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;left(zip_code,5) as zip5,&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;right(zip_code,4) as zip4&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;INLINE [&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;zip_code&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;123456789&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;112233445&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;111222333 &lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;this works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;I think these are some very basic doubts but till now i don't know the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Thanks,&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Sujeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:51:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438659#M163515</guid>
      <dc:creator />
      <dc:date>2012-11-15T17:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438660#M163516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident tmp; is used for creating table from tmp table. And &lt;SPAN class="Bold"&gt;resident&lt;/SPAN&gt; is used if data should be loaded from a previously loaded input table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 17:58:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438660#M163516</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2012-11-15T17:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: How does Inline keywork works</title>
      <link>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438661#M163517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Resident always refer to a previously loaded table.&lt;/P&gt;&lt;P&gt;if&amp;nbsp; you want to make use of the existing table we go for resident .&lt;/P&gt;&lt;P&gt;remember that table should alwasy exists before using resident...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 18:01:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-does-Inline-keywork-works/m-p/438661#M163517</guid>
      <dc:creator>shree909</dc:creator>
      <dc:date>2012-11-15T18:01:30Z</dc:date>
    </item>
  </channel>
</rss>

