<?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 to get data from two access databases in one qlikview file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495921#M1126846</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see that your time ranges overlap, hence the duplicates.&amp;nbsp; If time is a reliable criteria, you have to load data from the database ony after the latest date of the database A, for example&lt;/P&gt;&lt;P&gt;&amp;lt;connect to database 2&amp;gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Table1)&lt;BR /&gt;SQL SELECT&lt;BR /&gt;...&lt;BR /&gt;FROM table 1&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Table1Date &amp;gt; '03/06/2013'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jan 2014 16:31:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-01-10T16:31:20Z</dc:date>
    <item>
      <title>How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495911#M1126835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have two databases&amp;nbsp; A and B&lt;/P&gt;&lt;P&gt;A contains data from 01/08/2008 to 03/06/2013&lt;/P&gt;&lt;P&gt;B contains data from 01/08/2010 to till date&lt;/P&gt;&lt;P&gt;Both database contains same tables and same columns when I am trying to reload in one file it is showing data only in A database file.&lt;/P&gt;&lt;P&gt;Please could anyone help me how to set this please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:02:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495911#M1126835</guid>
      <dc:creator />
      <dc:date>2014-01-10T14:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495912#M1126836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if the tables and the columns have the same name/label this will auto concatenate.&lt;/P&gt;&lt;P&gt;to avoid this you could add to NoConcatenate to the load sats&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load A,B from file1.csv;&lt;/P&gt;&lt;P class="Code"&gt;&lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;noconcatenate&lt;/SPAN&gt; load A,B from file2.csv;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read more about this in the manual or help ile of QlikView&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:07:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495912#M1126836</guid>
      <dc:creator>fabrice_lawson</dc:creator>
      <dc:date>2014-01-10T14:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495913#M1126838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amelia,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It may look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;connect to database 1&amp;gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;...&lt;BR /&gt;FROM table 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;...&lt;BR /&gt;FROM table 2;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;connect to database 2&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE (Table1)&lt;/STRONG&gt;&lt;BR /&gt;SQL SELECT&lt;BR /&gt;...&lt;BR /&gt;FROM table 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE (Table2)&lt;/STRONG&gt;&lt;BR /&gt;SQL SELECT&lt;BR /&gt;...&lt;BR /&gt;FROM table 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:08:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495913#M1126838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-10T14:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495914#M1126839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a duplicate post.&amp;nbsp; The original thread is here: &lt;A href="https://community.qlik.com/thread/103606"&gt;Is it possible to combine two access databases in one qvw file&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495914#M1126839</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-01-10T14:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495915#M1126840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and how can I get Master Calendar when I use this and also I used concatenate but still showing same result. Please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:10:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495915#M1126840</guid>
      <dc:creator />
      <dc:date>2014-01-10T14:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495916#M1126841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and I couldn't able to get the binary load please help me as I need to this in production please!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495916#M1126841</guid>
      <dc:creator />
      <dc:date>2014-01-10T14:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495917#M1126842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why is a problem with the master calendar?&lt;/P&gt;&lt;P&gt;I'd create the calendar from 1/1/2008 (start of the year of the earliest data) to the end of the current year.&amp;nbsp; Prefer always have full years, unless there is a good reason against it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:14:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495917#M1126842</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-10T14:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495918#M1126843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and I sued the same still it's showing somehow same result&amp;nbsp; Please do help me is there anything I need to change. And also How can I remove DUPLICATES as I am getting DUPLICATES .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:16:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495918#M1126843</guid>
      <dc:creator />
      <dc:date>2014-01-10T14:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495919#M1126844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Para la segunda tabla , agrega un nuevo campo ejemplo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Tabla 1: &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;SQL SELECT &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;... &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;FROM tabla 1;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Tabla 2: &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;LOAD&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;*,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;1 as NuevoCampo&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;SQL SELECT &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;... &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;FROM tabla 2;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Con esto crearas una segunda tabla con campos direferentes a la primera.&lt;/P&gt;&lt;P&gt;Suerte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495919#M1126844</guid>
      <dc:creator />
      <dc:date>2014-01-10T14:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495920#M1126845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help me how to remove duplicates as this is very urgent for me please I am not getting any idea in doing this. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 15:40:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495920#M1126845</guid>
      <dc:creator />
      <dc:date>2014-01-10T15:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495921#M1126846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see that your time ranges overlap, hence the duplicates.&amp;nbsp; If time is a reliable criteria, you have to load data from the database ony after the latest date of the database A, for example&lt;/P&gt;&lt;P&gt;&amp;lt;connect to database 2&amp;gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Table1)&lt;BR /&gt;SQL SELECT&lt;BR /&gt;...&lt;BR /&gt;FROM table 1&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Table1Date &amp;gt; '03/06/2013'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 16:31:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495921#M1126846</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-10T16:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495922#M1126847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and when I am giving the date as Date&amp;gt;'03/06/2013' it is showing data type mismatch for date while running the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to change date format?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 17:01:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495922#M1126847</guid>
      <dc:creator />
      <dc:date>2014-01-10T17:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495923#M1126848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the date format you showed in your post...&amp;nbsp; Try to change it to the correct one in the "WHERE".&lt;/P&gt;&lt;P&gt;Usually this helps, it is using whatever format is set in your application (I assume it is March 6, not the June 3):&lt;/P&gt;&lt;P&gt;date(date#('03/06/2013', 'MM/DD/YYYY'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 21:23:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495923#M1126848</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-10T21:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495924#M1126849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It possibly in data format error. Just experiment with the data in different types and formats, with ' ', without, with date() etc. I beleive if you decopmose every step of your load and every proccess that currently handled with script scenario you will be able to impress your own solution with this load. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for duplicates, define which how would you use the data model? Do you need to see the rows in separate tables, or in one main containing data from two access databases? Try to draw a model you want to get for your task on paper. And what should you do to get this. And you will do the needed script in action. You can remove duplicates with different ways in QlikView, f.e. as I understand the duplicates are between 01/08/2010 to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;03/06/2013? If it is so, just remove in load script just for start with where date &amp;lt; or &amp;gt; or beetween the dates, get the data and improve. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thanks.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 21:44:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495924#M1126849</guid>
      <dc:creator>marchoctober</dc:creator>
      <dc:date>2014-01-10T21:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495925#M1126850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any update? As question not answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Feb 2014 10:46:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495925#M1126850</guid>
      <dc:creator>marchoctober</dc:creator>
      <dc:date>2014-02-23T10:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from two access databases in one qlikview file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495926#M1126851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that the question has been answered.&amp;nbsp; And a follow-up question has been answered.&amp;nbsp; The only problem that it was not marked as answered &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2014 13:15:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-data-from-two-access-databases-in-one-qlikview-file/m-p/495926#M1126851</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-24T13:15:31Z</dc:date>
    </item>
  </channel>
</rss>

