<?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 Loading from different ODBC sources into same table alias (aggregate data)? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-from-different-ODBC-sources-into-same-table-alias/m-p/361200#M134119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 3 separate ODBC sources for my dashboard, each one having roughly the same field names (but not always), but each source is unique to itself. I need to somehow load the rows from all 3 sources into a single table alias in Qlikview so that I can display the data on a chart. In the process I want to make homogenize the incoming data as much as possible so it makes sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder if I can do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Load from first ODBC source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT blah blah Source1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTableAlias:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'Source1' as TypeDescr,&lt;/P&gt;&lt;P&gt;'Source1' &amp;amp; `ID` as UniqueID,&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;Name,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;Product;&lt;/P&gt;&lt;P&gt;SQL Select * from Source1Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Load from second ODBC source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT blah blah Source2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTableAlias:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'Source2' as TypeDescr,&lt;/P&gt;&lt;P&gt;'Source2' &amp;amp; `ID` as UniqueID,&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;TheName as Name,&lt;/P&gt;&lt;P&gt;TheDate as Date,&lt;/P&gt;&lt;P&gt;TheProduct as Product;&lt;/P&gt;&lt;P&gt;SQL Select * from Source2Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Load from third ODBC source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT blah blah Source3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTableAlias:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'Source3' as TypeDescr,&lt;/P&gt;&lt;P&gt;'Source3' &amp;amp; `ID` as UniqueID,&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;Name as Name,&lt;/P&gt;&lt;P&gt;Date as Date,&lt;/P&gt;&lt;P&gt;aProduct as Product;&lt;/P&gt;&lt;P&gt;SQL Select * from Source3Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My main concern is if Qlikview allows this, where I am reusing MyTableAlias 3 times.. I am not sure if doing this appends the data to the alias on each load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jul 2012 16:31:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-20T16:31:27Z</dc:date>
    <item>
      <title>Loading from different ODBC sources into same table alias (aggregate data)?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-from-different-ODBC-sources-into-same-table-alias/m-p/361200#M134119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 3 separate ODBC sources for my dashboard, each one having roughly the same field names (but not always), but each source is unique to itself. I need to somehow load the rows from all 3 sources into a single table alias in Qlikview so that I can display the data on a chart. In the process I want to make homogenize the incoming data as much as possible so it makes sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder if I can do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Load from first ODBC source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT blah blah Source1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTableAlias:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'Source1' as TypeDescr,&lt;/P&gt;&lt;P&gt;'Source1' &amp;amp; `ID` as UniqueID,&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;Name,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;Product;&lt;/P&gt;&lt;P&gt;SQL Select * from Source1Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Load from second ODBC source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT blah blah Source2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTableAlias:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'Source2' as TypeDescr,&lt;/P&gt;&lt;P&gt;'Source2' &amp;amp; `ID` as UniqueID,&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;TheName as Name,&lt;/P&gt;&lt;P&gt;TheDate as Date,&lt;/P&gt;&lt;P&gt;TheProduct as Product;&lt;/P&gt;&lt;P&gt;SQL Select * from Source2Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Load from third ODBC source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT blah blah Source3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTableAlias:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;'Source3' as TypeDescr,&lt;/P&gt;&lt;P&gt;'Source3' &amp;amp; `ID` as UniqueID,&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;Name as Name,&lt;/P&gt;&lt;P&gt;Date as Date,&lt;/P&gt;&lt;P&gt;aProduct as Product;&lt;/P&gt;&lt;P&gt;SQL Select * from Source3Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My main concern is if Qlikview allows this, where I am reusing MyTableAlias 3 times.. I am not sure if doing this appends the data to the alias on each load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 16:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-from-different-ODBC-sources-into-same-table-alias/m-p/361200#M134119</guid>
      <dc:creator />
      <dc:date>2012-07-20T16:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from different ODBC sources into same table alias (aggregate data)?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-from-different-ODBC-sources-into-same-table-alias/m-p/361201#M134120</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;Regardless of the source QlikView will always concatenate the loads into a single table if they have exactly the same fields (auto concatenation) otherwise you'll have to put the command concatenate just before the secondary loads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Cesar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 18:43:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-from-different-ODBC-sources-into-same-table-alias/m-p/361201#M134120</guid>
      <dc:creator>cesaraccardi</dc:creator>
      <dc:date>2012-07-20T18:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loading from different ODBC sources into same table alias (aggregate data)?</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-from-different-ODBC-sources-into-same-table-alias/m-p/361202#M134121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cesar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again for the quick response and thorough answer!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 19:26:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-from-different-ODBC-sources-into-same-table-alias/m-p/361202#M134121</guid>
      <dc:creator />
      <dc:date>2012-07-20T19:26:50Z</dc:date>
    </item>
  </channel>
</rss>

