<?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 connection to MS SQL Server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357763#M1175657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric, I've covered this more in my new blog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://oneqlikatatime.blogspot.co.uk/2012/04/how-to-connect-to-sql-server.html"&gt;http://oneqlikatatime.blogspot.co.uk/2012/04/how-to-connect-to-sql-server.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Apr 2012 16:28:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-04-28T16:28:54Z</dc:date>
    <item>
      <title>connection to MS SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357759#M1175653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any possibility to load data from a MS SQL Server within the evaluation edition of QlikView? I would be very happe if someone could help me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2012 14:34:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357759#M1175653</guid>
      <dc:creator />
      <dc:date>2012-04-18T14:34:50Z</dc:date>
    </item>
    <item>
      <title>connection to MS SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357760#M1175654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you been through the tutorials?&amp;nbsp; I'd give them a whirl before starting anything more complicated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise to connect to SQL (if set up as odbc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open the script tab&lt;/P&gt;&lt;P&gt;click connect&lt;/P&gt;&lt;P&gt;choose your odbc and select ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will then take you back to the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then click the select button and choose your view/Table you want to bring down&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#protip - click preceding load and QV will give you the list of field names from the DB which can be useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Apr 2012 10:15:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357760#M1175654</guid>
      <dc:creator />
      <dc:date>2012-04-22T10:15:17Z</dc:date>
    </item>
    <item>
      <title>connection to MS SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357761#M1175655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can.&amp;nbsp; As Chris says the wizards are quite straight forward to use.&amp;nbsp; To just test a connection though you can use the following code - if your SQL server is on a different box you will need to change localhost to the IP of your server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a new QlikView document, ignore the Excel wizard, save it, select File Menu \ Edit Script, then paste this at the bottom of the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OLEDB CONNECT TO [Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=master;Data Source=localhost;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Use Encryption for Data=False;Tag with column collation when possible=False];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SQL SELECT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM dbo.sysobjects;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, click the Reload button.&amp;nbsp; Obviously the SQL statement can be changed to whatever you like.&amp;nbsp; The connection string assumes a trusted connection, but you can replace this with any valid OLEDB connection string - or use the &lt;STRONG&gt;Connect&lt;/STRONG&gt; button and wizard to have QlikView generate the connection string for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.quickintelligence.co.uk/"&gt;http://www.quickintelligence.co.uk/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Apr 2012 12:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357761#M1175655</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2012-04-22T12:26:51Z</dc:date>
    </item>
    <item>
      <title>connection to MS SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357762#M1175656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which tutorial teaches you how to connect to SQL Server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2012 16:53:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357762#M1175656</guid>
      <dc:creator />
      <dc:date>2012-04-27T16:53:55Z</dc:date>
    </item>
    <item>
      <title>connection to MS SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357763#M1175657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric, I've covered this more in my new blog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://oneqlikatatime.blogspot.co.uk/2012/04/how-to-connect-to-sql-server.html"&gt;http://oneqlikatatime.blogspot.co.uk/2012/04/how-to-connect-to-sql-server.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Apr 2012 16:28:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connection-to-MS-SQL-Server/m-p/357763#M1175657</guid>
      <dc:creator />
      <dc:date>2012-04-28T16:28:54Z</dc:date>
    </item>
  </channel>
</rss>

