<?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 Mulitple servers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134410#M605854</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you already got it. After you connect, and before looping to the next database, LOAD whatever tables you need, rename fields, transform or store, and same for the next load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2018 07:03:32 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2018-07-12T07:03:32Z</dc:date>
    <item>
      <title>Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134406#M605850</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 need one help, i have a requirement&lt;/P&gt;&lt;P&gt;I need to&amp;nbsp; connect &lt;SPAN style="font-size: 13.3333px;"&gt;dynamically &lt;/SPAN&gt;Multiple servers to load the data from SQL server.&lt;/P&gt;&lt;P&gt;I have a code to load data from one server multiple databases but,&lt;/P&gt;&lt;P&gt;I want to load multiple databases from multiple servers please give some suggestions.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 06:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134406#M605850</guid>
      <dc:creator>rajaqliks</dc:creator>
      <dc:date>2018-07-12T06:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134407#M605851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to define different connections for each server and load data serially...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 06:57:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134407#M605851</guid>
      <dc:creator>dapostolopoylos</dc:creator>
      <dc:date>2018-07-12T06:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134408#M605852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the CONNECT command in the script to connect to as many databases as you need. Remember that every CONNECT causes the previous to DISCONNECT, even if you don't write it in the script. So CONNECT to database1, read all the tables, then CONNECT to the next and so on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 06:58:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134408#M605852</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-07-12T06:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134409#M605853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to load dynamically, the follwoing script i am using to load data from one server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variable: &lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vServerAddress, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vDataBase, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vUsername, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vPassword&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Excel file;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vVar=NoOfRows('Variable');&lt;/P&gt;&lt;P&gt;for i=0 to NoOfRows('Variable')-1&lt;/P&gt;&lt;P&gt;Let V1=i;&lt;/P&gt;&lt;P&gt;let vServerAddress = peek('vServerAddress',0,'Variable');&lt;/P&gt;&lt;P&gt;let vDataBase = peek('vDataBase',i,'Variable');&lt;/P&gt;&lt;P&gt;let vUsername = peek('vUsername',i,'Variable');&lt;/P&gt;&lt;P&gt;let vPassword = peek('vPassword',i,'Variable');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONNECT TO [Provider=SQLOLEDB;Server=$(vServerAddress);Database=$(vDataBase);Uid=$(vUsername);Pwd=$(vPassword);];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next i;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 07:01:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134409#M605853</guid>
      <dc:creator>rajaqliks</dc:creator>
      <dc:date>2018-07-12T07:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134410#M605854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you already got it. After you connect, and before looping to the next database, LOAD whatever tables you need, rename fields, transform or store, and same for the next load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 07:03:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134410#M605854</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-07-12T07:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134411#M605855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;i am using the following script, one server it will work fine but, if the second server starts automatically it gives a pop to enter username and password.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Variable:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vServerAddress,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vDataBase,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vUsername,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vPassword&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Excel file;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Let vVar=NoOfRows('Variable');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;for i=0 to NoOfRows('Variable')-1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Let V1=i;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;let vServerAddress = peek('vServerAddress',0,'Variable');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;let vDataBase = peek('vDataBase',i,'Variable');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;let vUsername = peek('vUsername',i,'Variable');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;let vPassword = peek('vPassword',i,'Variable');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;CONNECT TO [Provider=SQLOLEDB;Server=$(vServerAddress);Database=$(vDataBase);Uid=$(vUsername);Pwd=$(vPassword);];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;next i;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 07:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134411#M605855</guid>
      <dc:creator>rajaqliks</dc:creator>
      <dc:date>2018-07-12T07:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134412#M605856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you need to make sure that username and password are correct in the excel file, and also that the server allows such connections. It could be that the server only accepts Windows users (NTFS) and not external credentials.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 07:08:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134412#M605856</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-07-12T07:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Connect Mulitple servers</title>
      <link>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134413#M605857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using the correct credentials but i am facing the issue. if one server multiple databases it will work fine but if it is two servers multiple databases it is giving the pop up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 07:12:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Connect-Mulitple-servers/m-p/134413#M605857</guid>
      <dc:creator>rajaqliks</dc:creator>
      <dc:date>2018-07-12T07:12:04Z</dc:date>
    </item>
  </channel>
</rss>

