<?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: Connect multiple databases sql in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1577444#M1228334</link>
    <description>&lt;P&gt;But databases do not have the same tables&lt;/P&gt;</description>
    <pubDate>Tue, 07 May 2019 13:32:39 GMT</pubDate>
    <dc:creator>Sa20</dc:creator>
    <dc:date>2019-05-07T13:32:39Z</dc:date>
    <item>
      <title>Connect multiple databases sql</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576627#M1228323</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Please how can i connect multiple databases sql to analyze it as a single database in qlikView ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 21:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576627#M1228323</guid>
      <dc:creator>Sa20</dc:creator>
      <dc:date>2026-01-26T21:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Connect multiple databases sql</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576635#M1228326</link>
      <description>&lt;P&gt;You can create multiple connection strings and import data in qlikview.&lt;/P&gt;&lt;P&gt;After that, you can create single model as per your requirement.&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2019 10:16:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576635#M1228326</guid>
      <dc:creator>shiveshsingh</dc:creator>
      <dc:date>2019-05-05T10:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Connect multiple databases sql</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576636#M1228329</link>
      <description>&lt;P&gt;Hi, you can store connection string in txt, and use a for each bucle to connect to each one to retrieve data, ie, assuming that all databases have the same tables:&lt;BR /&gt;for each table in 'table1','table2','table3' //fill with table names&lt;BR /&gt;for each connection in 'Connection1','Connection2','Connection3' //fill with txt names of connection strings&lt;BR /&gt;$(Include=path_to_connections\$(connection).txt); //this loads the connection&lt;BR /&gt;// Retrieve data from all connections&lt;BR /&gt;[$(table)]:&lt;BR /&gt;LOAD '$(connection)' as connection,&lt;BR /&gt;*&lt;BR /&gt;from [$(table)];&lt;BR /&gt;next&lt;BR /&gt;// store joined data into a qvd, this qvd will be readed by the app to load the data&lt;BR /&gt;Store [$(table)] into [Path_to _qvds_folder\$(table).qvd];&lt;BR /&gt;Drop [$(table)];&lt;BR /&gt;next&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2019 10:16:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576636#M1228329</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-05-05T10:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Connect multiple databases sql</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576663#M1228332</link>
      <description>&lt;P&gt;Follow this pattern:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Connection for first database&lt;/LI&gt;&lt;LI&gt;Load whatever data required from first database&lt;/LI&gt;&lt;LI&gt;Open connection for next database (this will implicitly disconnect the first)&lt;/LI&gt;&lt;LI&gt;Load whatever data required from second database (and concatenate or join to the earlier tables as required)&lt;/LI&gt;&lt;LI&gt;Open connection to third database&lt;/LI&gt;&lt;LI&gt;Etc Etc&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The data from all the sources will be loaded into a single QVW file for analysis.&lt;/P&gt;</description>
      <pubDate>Sun, 05 May 2019 15:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1576663#M1228332</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-05-05T15:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Connect multiple databases sql</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1577444#M1228334</link>
      <description>&lt;P&gt;But databases do not have the same tables&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 13:32:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1577444#M1228334</guid>
      <dc:creator>Sa20</dc:creator>
      <dc:date>2019-05-07T13:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Connect multiple databases sql</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1577451#M1228335</link>
      <description>You can create different variables to store table names:&lt;BR /&gt;SET vTablesConnection1 = 'Table1_Conn1', 'Table2_Conn1';&lt;BR /&gt;SET vTablesConnection2 = 'Table1_Conn2', 'Table2_Conn2';&lt;BR /&gt;&lt;BR /&gt;for numberOfConnection=1 to 2&lt;BR /&gt;for each table in $(vTablesConnection$(numberOfConnection))&lt;BR /&gt;...&lt;BR /&gt;Next</description>
      <pubDate>Tue, 07 May 2019 13:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-multiple-databases-sql/m-p/1577451#M1228335</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-05-07T13:50:38Z</dc:date>
    </item>
  </channel>
</rss>

