<?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 Script problems converting from SQL2005 to SQL2008 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215756#M69167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I had the same issue until now !&lt;/P&gt;&lt;P&gt;I just succeed connecting to MS SQL 2008 (x64) using the 2005 provider SQLOLEDB.1...&lt;/P&gt;&lt;P&gt;Below is the connection string:&lt;/P&gt;&lt;P&gt;CONNECT TO [Provider=SQLOLEDB.1;Persist Security Info=True;User ID=&lt;EM&gt;sa&lt;/EM&gt;;Initial Catalog=&lt;EM&gt;MyDataBase&lt;/EM&gt;;Data Source=&lt;EM&gt;MyInstance&lt;/EM&gt;;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=&lt;EM&gt;ServerName&lt;/EM&gt;;Use Encryption for Data=False;Tag with column collation when possible=False] (XPassword is &lt;EM&gt;MyPasswordEncrypted&lt;/EM&gt;);&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ylan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Nov 2009 23:52:52 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-11-02T23:52:52Z</dc:date>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215748#M69159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BLUF (Bottom Line Up Front): We are converting our Data Warehouse from SQL 2000 over to SQL 2008. We are having problems converting our QVD load scripts over (see example below). We are being required to use the SQL CAST function to read the data from the new 2008 SQL server. We would like to avoid this as we have our QVD scripts programmed with variables so that we could make the switch to the new DW fairly easily. Do you have any ideas why the SQL Server Native Client 10.0 would not be working properly with QlikView?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the load script that we currently use for our qvd build from our old SQL data warehouse (SQL 2000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;sql2:&lt;/P&gt;&lt;P&gt;&lt;B&gt;LOAD&lt;/B&gt; ClaimDetailId,&lt;/P&gt;&lt;P&gt;TosNo,&lt;/P&gt;&lt;P&gt;MultiValue,&lt;/P&gt;&lt;P&gt;PlanType,&lt;/P&gt;&lt;P&gt;CptId,&lt;/P&gt;&lt;P&gt;IcesStatus,&lt;/P&gt;&lt;P&gt;IcesErrorCode,&lt;/P&gt;&lt;P&gt;IcesDescription,&lt;/P&gt;&lt;P&gt;IcesBatchId;&lt;/P&gt;&lt;P&gt;&lt;B&gt;SQL&lt;/B&gt; &lt;B&gt;SELECT&lt;/B&gt; *&lt;/P&gt;&lt;P&gt;&lt;B&gt;FROM&lt;/B&gt; "dw_data".HealthTraq."tosdet_ices";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we point the same reload to our new data ware house, we get the following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL Error: [Microsoft][SQL Server Native Client 10.0]Numeric value out of range&lt;/P&gt;&lt;P&gt;SQL STATE: 22003&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;By adding a couple of SQL CAST statements to the script we can get the reload to work on the new 2008 SQL Database. Here is the working script:&lt;/P&gt;&lt;P&gt;&lt;I&gt;SQL3:&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;LOAD&lt;/B&gt; ClaimDetailId,&lt;/P&gt;&lt;P&gt;TosNo,&lt;/P&gt;&lt;P&gt;MultiValue,&lt;/P&gt;&lt;P&gt;PlanType;&lt;/P&gt;&lt;P&gt;&lt;B&gt;SQL&lt;/B&gt; &lt;B&gt;SELECT&lt;/B&gt; ClaimDetailId,&lt;/P&gt;&lt;P&gt;CAST(TosNo as bigint) as TosNo,&lt;/P&gt;&lt;P&gt;CAST(MultiValue as bigint) as MultiValue,&lt;/P&gt;&lt;P&gt;PlanType&lt;/P&gt;&lt;P&gt;&lt;B&gt;FROM&lt;/B&gt; "dw_data_test".dbo."tosdet_ices";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We would like to avoid having to go through all the QVD's and put in the CAST values into the old qvd's. It looks like mostly the INT (both SmallInt and BIGINT), Numeric and the MONEY Data Types are causing us problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the Table layout for the "tosdet_ices" table:&lt;/P&gt;&lt;P&gt;ClaimDetailId varchar(15) Unchecked&lt;/P&gt;&lt;P&gt;TosNo smallint Unchecked&lt;/P&gt;&lt;P&gt;MultiValue smallint Unchecked&lt;/P&gt;&lt;P&gt;PlanType varchar(15) Checked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the information of our 2008 SQL Server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Microsoft SQL Server Management Studio 10.0.1600.22 ((SQL_PreRelease).080709-1414 )&lt;/P&gt;&lt;P&gt;Microsoft Analysis Services Client Tools 2007.0100.1600.022 ((SQL_PreRelease).080709-1414 )&lt;/P&gt;&lt;P&gt;Microsoft Data Access Components (MDAC) 2000.086.3959.00 (srv03_sp2_rtm.070216-1710)&lt;/P&gt;&lt;P&gt;Microsoft MSXML 2.6 3.0 6.0&lt;/P&gt;&lt;P&gt;Microsoft Internet Explorer 7.0.5730.13&lt;/P&gt;&lt;P&gt;Microsoft .NET Framework 2.0.50727.3053&lt;/P&gt;&lt;P&gt;Operating System 5.2.3790&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the ODBC information on the QlikView Server:&lt;/P&gt;&lt;P&gt;SQL2000 ODBC Driver Microsoft SQL Server ODBC Driver Version 03.86.3959&lt;/P&gt;&lt;P&gt;SQL2008 ODBC DRIVER Microsoft SQL Server Native Client Version 10.00.1600&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your help in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2009 04:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215748#M69159</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-14T04:01:12Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215749#M69160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried using OLEDB instead of ODBC?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2009 04:34:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215749#M69160</guid>
      <dc:creator />
      <dc:date>2009-10-14T04:34:03Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215750#M69161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. We have tried OLE DB and can not seem to get it to work with the old SQL server. We tried on the new server, but we must not have the proper settings as we get the following erro: "OLEDB read failed" when we try to read a table in QlikView. The connection tests alright, but QV will not read the table.&lt;/P&gt;&lt;P&gt;I am not an expert on ODBC and OLE DB but this Microsoft statement "Microsoft SQL Server 2008 Native Client (SQL Native Client) is a single dynamic-link library (DLL) containing both the SQL OLE DB provider and SQL ODBC driver." that both ODBC and OLE DB is in the same driver. Am I correct in my thinking?&lt;/P&gt;&lt;P&gt;Thanks for you suggestion!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2009 19:30:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215750#M69161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-14T19:30:05Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215751#M69162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your suspecting a driver issue have you tried reading the 2008 warehouse with the 2005 drivers which may have more compatability with both versions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2009 20:35:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215751#M69162</guid>
      <dc:creator />
      <dc:date>2009-10-14T20:35:22Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215752#M69163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I should note that the new SQL2008 server is 64-bit whereas the old is 32 bit and a SQL2000 server not SQL2005 as noted in the title. Too many server versions to keep track of. I don't believe that I can use the old driver on a 64 bit server, correct?&lt;/P&gt;&lt;P&gt;Thanks again for everyones help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2009 20:44:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215752#M69163</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-14T20:44:09Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215753#M69164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Im assuming your QV is on a seperate server to the SQL server Database (You dont want both competing for memory)&lt;/P&gt;&lt;P&gt;This means you can install the sql client tools on the QV server, its this driver that is doing the data access as a client&lt;/P&gt;&lt;P&gt;Colin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2009 23:26:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215753#M69164</guid>
      <dc:creator />
      <dc:date>2009-10-14T23:26:43Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215754#M69165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct. We have QV and SQL on different Servers. We have installed the SQL Native Client 10.0, is this the same thing as SQL Client Tools?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2009 23:42:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215754#M69165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-14T23:42:11Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215755#M69166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its essentially the same the client tools upgrades the sql client.&lt;/P&gt;&lt;P&gt;I believe it always maintains the highest version so probably wont go down to the 2005 version without an uninstall of version 10, and it will also be affected by service packs etc&lt;/P&gt;&lt;P&gt;Im suggesting you may get better compatability of both sql2000 and sql2008 from an interim driver the sql2005 version !&lt;/P&gt;&lt;P&gt;its worth a try if it removes the requirement to edit Load scripts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 00:06:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215755#M69166</guid>
      <dc:creator />
      <dc:date>2009-10-15T00:06:49Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215756#M69167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I had the same issue until now !&lt;/P&gt;&lt;P&gt;I just succeed connecting to MS SQL 2008 (x64) using the 2005 provider SQLOLEDB.1...&lt;/P&gt;&lt;P&gt;Below is the connection string:&lt;/P&gt;&lt;P&gt;CONNECT TO [Provider=SQLOLEDB.1;Persist Security Info=True;User ID=&lt;EM&gt;sa&lt;/EM&gt;;Initial Catalog=&lt;EM&gt;MyDataBase&lt;/EM&gt;;Data Source=&lt;EM&gt;MyInstance&lt;/EM&gt;;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=&lt;EM&gt;ServerName&lt;/EM&gt;;Use Encryption for Data=False;Tag with column collation when possible=False] (XPassword is &lt;EM&gt;MyPasswordEncrypted&lt;/EM&gt;);&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ylan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 23:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215756#M69167</guid>
      <dc:creator />
      <dc:date>2009-11-02T23:52:52Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215757#M69168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We are also upgrading a SQL server 2000 version to version 2008. With the post of Ylan I assume that the connection can be made with the 2005 provider SQLOLEDB.1. Does this OLEDB connection support 32 and 64 bits? And is this driver already installed or do we have to download?&lt;/P&gt;&lt;P&gt;@ Ylan: Do you also have QV en SQL Server installed on separated boxes? Both 64x? And version QV 9 or 8?&lt;/P&gt;&lt;P&gt;Greetz&lt;BR /&gt;Robbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 13:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215757#M69168</guid>
      <dc:creator />
      <dc:date>2009-11-05T13:54:34Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215758#M69169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We are also upgrading a SQL server 2000 version to version 2008. With the post of Ylan I assume that the connection can be made with the 2005 provider SQLOLEDB.1. Does this OLEDB connection support 32 and 64 bits? And is this driver already installed or do we have to download?&lt;/P&gt;&lt;P&gt;@ Ylan: Do you also have QV en SQL Server installed on separated boxes? Both 64x? And version QV 9 or 8?&lt;/P&gt;&lt;P&gt;Greetz&lt;BR /&gt;Robbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 13:55:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215758#M69169</guid>
      <dc:creator />
      <dc:date>2009-11-05T13:55:23Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215759#M69170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robbie&lt;/P&gt;&lt;P&gt;I have tested oledb connection to SQL 2008 only on 64bits. I used this driver --&amp;gt; &lt;A href="http://download.microsoft.com/download/3/1/6/316FADB2-E703-4351-8E9C-E0B36D9D697E/sqlncli_x64.msi"&gt;http://download.microsoft.com/download/3/1/6/316FADB2-E703-4351-8E9C-E0B36D9D697E/sqlncli_x64.msi&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;I'm pretty sure you can connect to SQL 2008 on 32bits using that one --&amp;gt; &lt;A href="http://download.microsoft.com/download/3/1/6/316FADB2-E703-4351-8E9C-E0B36D9D697E/sqlncli.msi"&gt;http://download.microsoft.com/download/3/1/6/316FADB2-E703-4351-8E9C-E0B36D9D697E/sqlncli.msi&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Let us know &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ylan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 22:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215759#M69170</guid>
      <dc:creator />
      <dc:date>2009-11-26T22:53:12Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215760#M69171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ylan! I'll try the suggested drivers. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 18:28:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215760#M69171</guid>
      <dc:creator />
      <dc:date>2009-12-07T18:28:37Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215761#M69172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We just updated a SQL server from 2005 to 2008.&amp;nbsp;&amp;nbsp; I am having the same issues except the 'Numeric value out of range' is only in my test environment and my desktop. My production environment has the same set up as far as drivers and ODBC's yet, I cant conntect to the new SQL server from neither my test server nor my desktop.&amp;nbsp; Although, my production environment connects and loads just fine.&amp;nbsp; From my desktop, I am able to CONNECT,&amp;nbsp; SELECT a table and bring in all of the fields.&amp;nbsp; It once I reload that I get an error.&amp;nbsp; the only things that appears different is where the load originates.&amp;nbsp; Does anyone have any ideas of why I might be getting these errors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 17:34:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215761#M69172</guid>
      <dc:creator />
      <dc:date>2012-02-27T17:34:15Z</dc:date>
    </item>
    <item>
      <title>Script problems converting from SQL2005 to SQL2008</title>
      <link>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215762#M69173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Just wanted to update what solution worked for my issue upgrading a server from SQL2005 to SQL 2008.&amp;nbsp; I had installed the SQL Native Client 10 but the old version was not working.&amp;nbsp; It wasnt until I updated to the latest release, R2, did everything start working.&amp;nbsp;&amp;nbsp; So....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are both SQL Native Client 10&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;10.0.1600.22 Did not work for me&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;R2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;10.50.1600.1 Works&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 19:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-problems-converting-from-SQL2005-to-SQL2008/m-p/215762#M69173</guid>
      <dc:creator />
      <dc:date>2012-02-28T19:25:54Z</dc:date>
    </item>
  </channel>
</rss>

