<?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 Qlikview script forgetting table names in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284543#M1201910</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think they even need to be adjacent. I believe if two tables have the same fields, they become the same table with the first name used for it unless you use noconcatenate.&lt;/P&gt;&lt;P&gt;I overuse noconcatenate to be safe. I also always use concatenate explicitly when I want to concatenate two tables, even if they have the same fields and are right next to each other.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Oct 2010 22:06:17 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2010-10-27T22:06:17Z</dc:date>
    <item>
      <title>Qlikview script forgetting table names</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284540#M1201907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the script in question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Cardiology]:&lt;BR /&gt;LOAD @1, @1 as Taxonomy, text(purgechar(trim(@2),'.')) as Diag1, text(purgechar(trim(@3),'.')) as Diag2, text(purgechar(trim(@4),'.')) as Diag3, text(purgechar(trim(@5),'.')) as Diag4&lt;BR /&gt;FROM C:\Users\kkorynta\Desktop\Cardiology_and_Gastroenterology_Diagnosis_Mix.txt (txt, codepage is 1252, no labels, delimiter is '@', msq);&lt;BR /&gt;&lt;BR /&gt;[TaxonomyReference]:&lt;BR /&gt;LOAD TAXONOMY_PK as [Taxonomy], [TAXONOMY FIELD] as [Taxonomy Category]&lt;BR /&gt;FROM &lt;C&gt; (ooxml, embedded labels, table is [Master Taxonomy]);&lt;BR /&gt;&lt;BR /&gt;[CardiologyPivot]:&lt;BR /&gt;Crosstable ([I-9 CM Variable], [I-9 CM Code], 2)&lt;BR /&gt;Load recno() as ID, [Taxonomy],&lt;BR /&gt; Diag1,&lt;BR /&gt; Diag2,&lt;BR /&gt; Diag3,&lt;BR /&gt; Diag4&lt;BR /&gt;Resident Cardiology;&lt;BR /&gt;&lt;BR /&gt;[CleanCardiologyPivot]:&lt;BR /&gt;Load ID, [I-9 CM Variable], [I-9 CM Code], Taxonomy Resident CardiologyPivot Where [I-9 CM Code] &amp;gt; 0;&lt;BR /&gt;&lt;BR /&gt;Left Join (CleanCardiologyPivot)&lt;BR /&gt;Load [Taxonomy], [Taxonomy Category] Resident TaxonomyReference&lt;BR /&gt;Where exists([Taxonomy]);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This ran correctly for a bit, then on one of my reloads, the CleanCardiologyPivot is no longer recognized as a table. Is this a bug or am I doing something wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 21:48:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284540#M1201907</guid>
      <dc:creator />
      <dc:date>2010-10-27T21:48:22Z</dc:date>
    </item>
    <item>
      <title>Qlikview script forgetting table names</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284541#M1201908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suspect you need to use NOCONCATENATE between the table name and the load itself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 21:53:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284541#M1201908</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-10-27T21:53:03Z</dc:date>
    </item>
    <item>
      <title>Qlikview script forgetting table names</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284542#M1201909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your suspicion is correct. Does the auto-join only happen when the 1st variables of two adjacent loads match? Or can this happen with any matching variables in two adjacent loads?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 21:59:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284542#M1201909</guid>
      <dc:creator />
      <dc:date>2010-10-27T21:59:34Z</dc:date>
    </item>
    <item>
      <title>Qlikview script forgetting table names</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284543#M1201910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think they even need to be adjacent. I believe if two tables have the same fields, they become the same table with the first name used for it unless you use noconcatenate.&lt;/P&gt;&lt;P&gt;I overuse noconcatenate to be safe. I also always use concatenate explicitly when I want to concatenate two tables, even if they have the same fields and are right next to each other.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 22:06:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-forgetting-table-names/m-p/284543#M1201910</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-10-27T22:06:17Z</dc:date>
    </item>
  </channel>
</rss>

