<?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 multiple databases with same tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282600#M1196284</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For any table, if there are site-specific fields in addition to common fields, you need to define all the fields of a table before you start loading from the sites. For example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Common fields of all sites: Com1, Com2, Com3&lt;/P&gt;&lt;P&gt;Site1-specific fields: Site1a, Site1b&lt;/P&gt;&lt;P&gt;Site2-specific fields; Site2a, Site2b&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define all fileds of the Table1 using the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Com1, Com2, Com3, Site1a, Sit1b, Site2a, Site2b&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connect to Site0 and load data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Table1) LOAD * From Table1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connect to Site1 and load data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Table1) LOAD * From Table1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Jun 2011 14:02:53 GMT</pubDate>
    <dc:creator>nagaiank</dc:creator>
    <dc:date>2011-06-20T14:02:53Z</dc:date>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282582#M1196266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have multiple databases for different operating sites but all of them have the same tables and i do not have a column that says where the record is from since all of them reside in site-specific databases so there was no need in the first place...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do i join them together but still be able to differentiate which sites the records are from?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 01:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282582#M1196266</guid>
      <dc:creator />
      <dc:date>2011-06-13T01:43:03Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282583#M1196267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may add a field to each table identifying the source site as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Connect to site1 database&lt;/P&gt;&lt;P&gt;OLEDB connect to connection-string-of-site1&lt;/P&gt;&lt;P&gt;// load individual tables&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load 'Site1' as Source, filed1, field2, ... from ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load 'Site1' as Source, field1,field2, ... from ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;// Connect to site2 database&lt;/P&gt;&lt;P&gt;OLEDB connect to connection-string-of-site2&lt;/P&gt;&lt;P&gt;Concatenate (Table1) Load 'Site2' as Source, field1, field2, ... from ...&lt;/P&gt;&lt;P&gt;Concatenate (Table2) Load 'Site2' as Source, ...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Repeat the above procedure for all sites&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on the architecture, you may have to tweak the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 02:14:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282583#M1196267</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2011-06-13T02:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282584#M1196268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kris thanks for your reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i followed your steps but i seem to get additional tables in the end,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i do a select fields or new sheet object, the fields listed there are like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tablename.fieldA&lt;/P&gt;&lt;P&gt;tablename.fieldB&lt;/P&gt;&lt;P&gt;tablename-1.fieldA&lt;/P&gt;&lt;P&gt;tablename-1.fieldB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why is this so, isn't it supposed to be just tablename instead of the additional tablename-1? did i do something wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also, i did the loading of tables from different sites in different tabs of the script editor. that can't be the problem right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 01:19:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282584#M1196268</guid>
      <dc:creator />
      <dc:date>2011-06-14T01:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282585#M1196269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey axon, try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load 'Site1' as Source, filed1, field2, ... from ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCATENATE &lt;/STRONG&gt;Load 'Site1' as Source, field1,field2, ... from ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 02:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282585#M1196269</guid>
      <dc:creator />
      <dc:date>2011-06-14T02:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282586#M1196270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to load from four different tables of an Access database by disconnecting the database connection after each load (in order to simulate multiple sites) and I do not get multiple tablenames with suffixes generated by the load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached my qvw file. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 02:09:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282586#M1196270</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2011-06-14T02:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282587#M1196271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry kris i'm unable to open your qvw, i'm using the free personal edition...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you paste ur codes here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 02:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282587#M1196271</guid>
      <dc:creator />
      <dc:date>2011-06-14T02:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282588#M1196272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but this will only work if i load table1 from siteA then table1 from siteB, one table at a time right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 02:26:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282588#M1196272</guid>
      <dc:creator />
      <dc:date>2011-06-14T02:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282589#M1196273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, one table at a time by script, i think there's no way u can do parellel loading by script, unless, u use dummy qvw and then load into QVD, but again, because of CONCATENATE, it wont make much sense loading it together , i think. does the script work for u ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 02:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282589#M1196273</guid>
      <dc:creator />
      <dc:date>2011-06-14T02:47:10Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282590#M1196274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't need parallel loading, just one time connections to each site's database, get all the site's database's tables, then connect to the 2nd site's database, get all the 2nd site's database's tables and concatenate their rows together...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i have to do it table by table, i have to repeatedly connect to each site's database &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/shocked.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 03:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282590#M1196274</guid>
      <dc:creator />
      <dc:date>2011-06-14T03:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282591#M1196275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the script that I used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test.accdb];&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD *, 'Site1' as Source;&lt;/P&gt;&lt;P&gt;LOAD Field1, Field2, Field3, Field4;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test1.accdb];&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;LOAD *, 'Site1' as Source;&lt;/P&gt;&lt;P&gt;LOAD FieldA, FieldB, FieldC, FieldD;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test.accdb];&lt;/P&gt;&lt;P&gt;Concatenate (Table1) LOAD *, 'Site2' as Source;&lt;/P&gt;&lt;P&gt;LOAD Field1, Field2, Field3, Field4;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test1.accdb];&lt;/P&gt;&lt;P&gt;Concatenate (Table2) LOAD *, 'Site2' as Source;&lt;/P&gt;&lt;P&gt;LOAD FieldA, FieldB, FieldC, FieldD;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test.accdb];&lt;/P&gt;&lt;P&gt;Concatenate (Table1) LOAD *, 'Site3' as Source;&lt;/P&gt;&lt;P&gt;LOAD Field1, Field2, Field3, Field4;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test1.accdb];&lt;/P&gt;&lt;P&gt;Concatenate (Table2) LOAD *, 'Site3' as Source;&lt;/P&gt;&lt;P&gt;LOAD FieldA, FieldB, FieldC, FieldD;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test.accdb];&lt;/P&gt;&lt;P&gt;Concatenate (Table1) LOAD *, 'Site4' as Source;&lt;/P&gt;&lt;P&gt;LOAD Field1, Field2, Field3, Field4;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site4;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT32 TO [MS Access Database;DBQ=C:\USERS\Kris\Documents\Test1.accdb];&lt;/P&gt;&lt;P&gt;Concatenate (Table2) LOAD *, 'Site4' as Source;&lt;/P&gt;&lt;P&gt;LOAD FieldA, FieldB, FieldC, FieldD;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM Site4;&lt;/P&gt;&lt;P&gt;DISCONNECT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see, I have loaded Table1 and Table2, followed by Table1 and Table2 from the second site, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 03:06:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282591#M1196275</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2011-06-14T03:06:11Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282592#M1196276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i can't do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;connect site1&lt;/P&gt;&lt;P&gt;load table1&lt;/P&gt;&lt;P&gt;load table2&lt;/P&gt;&lt;P&gt;...more tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;connect site2&lt;/P&gt;&lt;P&gt;concatenate table1&lt;/P&gt;&lt;P&gt;concatenate table2&lt;/P&gt;&lt;P&gt;...more tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 03:44:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282592#M1196276</guid>
      <dc:creator />
      <dc:date>2011-06-14T03:44:48Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282593#M1196277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure you can&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 03:52:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282593#M1196277</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-14T03:52:53Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282594#M1196278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but im getting suffixes adding on to the concatenated tables when i connect to a database once to retrieve all the tables and then the next database instead of repeatedly connect to the databases for the next table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table.fieldA&lt;/P&gt;&lt;P&gt;table.fieldB&lt;/P&gt;&lt;P&gt;table-1.fieldA&lt;/P&gt;&lt;P&gt;table-2.fieldB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for kris' example, he consantly connects to the database to simulate multiple databases&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 03:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282594#M1196278</guid>
      <dc:creator />
      <dc:date>2011-06-14T03:59:21Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282595#M1196279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what does your script look like then? Could you paste the doc here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 04:01:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282595#M1196279</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-14T04:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282596#M1196280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You do not need to connect to the database for each table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connect to Site1 database&lt;/P&gt;&lt;P&gt;// load tables&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;table2:&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then connect to site2 database&lt;/P&gt;&lt;P&gt;load tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 15:28:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282596#M1196280</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2011-06-15T15:28:57Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282597#M1196281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to kris, johannes and nick i have managed to get what i wanted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it was actually my qualify/unqualify statements that were causing the suffixes to be appended instead of concatenating to the tables...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 01:34:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282597#M1196281</guid>
      <dc:creator />
      <dc:date>2011-06-16T01:34:07Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282598#M1196282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ahhhhh now i got another problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i wasn't joining all tables yet when i removed the qualify/unqualify statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i was only joining tables with 2 similar columns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but once i started joining the other tables which were similar but site-specific i will be stuck at the loading script window... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 02:00:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282598#M1196282</guid>
      <dc:creator />
      <dc:date>2011-06-16T02:00:31Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282599#M1196283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why are you using join and not concatenate ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 12:47:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282599#M1196283</guid>
      <dc:creator>TK_</dc:creator>
      <dc:date>2011-06-20T12:47:55Z</dc:date>
    </item>
    <item>
      <title>multiple databases with same tables</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282600#M1196284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For any table, if there are site-specific fields in addition to common fields, you need to define all the fields of a table before you start loading from the sites. For example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Common fields of all sites: Com1, Com2, Com3&lt;/P&gt;&lt;P&gt;Site1-specific fields: Site1a, Site1b&lt;/P&gt;&lt;P&gt;Site2-specific fields; Site2a, Site2b&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define all fileds of the Table1 using the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Com1, Com2, Com3, Site1a, Sit1b, Site2a, Site2b&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connect to Site0 and load data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Table1) LOAD * From Table1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Connect to Site1 and load data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Table1) LOAD * From Table1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2011 14:02:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-databases-with-same-tables/m-p/282600#M1196284</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2011-06-20T14:02:53Z</dc:date>
    </item>
  </channel>
</rss>

