<?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 SQL Server User Defined Function (UDF) generates error in load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5503#M608066</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I attempt to use SQL Server User Defined Function in my SQL code in load script (qlik sense) it generated a cryptic error. &lt;SPAN style="font-size: 10pt;"&gt;I have ensured that the connection account has access to the udf and everything runs perfectly under the same account in SSMS. I have tried other udfs which generate similar errors. For the sake of this example, I used the validate email function below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Create FUNCTION [dbo].[udf_ValidateEmail] (@email varChar(255))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RETURNS bit&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;AS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;begin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;return&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;select &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Case &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When @Email is null then 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --NULL Email is invalid&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When charindex(' ', @email) &amp;lt;&amp;gt; 0 or --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; charindex('/', @email) &amp;lt;&amp;gt; 0 or --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; charindex(':', @email) &amp;lt;&amp;gt; 0 or --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; charindex(';', @email) &amp;lt;&amp;gt; 0 then 0 --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When len(@Email)-1 &amp;lt;= charindex('.', @Email) then 0--check for '%._' at end of string&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When @Email like '%@%@%'or &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; @Email Not Like '%@%.%'&amp;nbsp; then 0--Check for duplicate @ or invalid format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Else 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; END&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;end&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="UDF_Mystery.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/191073_UDF_Mystery.png" style="height: 557px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jan 2018 15:24:51 GMT</pubDate>
    <dc:creator>wdchristensen</dc:creator>
    <dc:date>2018-01-23T15:24:51Z</dc:date>
    <item>
      <title>SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5503#M608066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I attempt to use SQL Server User Defined Function in my SQL code in load script (qlik sense) it generated a cryptic error. &lt;SPAN style="font-size: 10pt;"&gt;I have ensured that the connection account has access to the udf and everything runs perfectly under the same account in SSMS. I have tried other udfs which generate similar errors. For the sake of this example, I used the validate email function below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Create FUNCTION [dbo].[udf_ValidateEmail] (@email varChar(255))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RETURNS bit&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;AS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;begin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;return&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;select &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Case &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When @Email is null then 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --NULL Email is invalid&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When charindex(' ', @email) &amp;lt;&amp;gt; 0 or --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; charindex('/', @email) &amp;lt;&amp;gt; 0 or --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; charindex(':', @email) &amp;lt;&amp;gt; 0 or --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; charindex(';', @email) &amp;lt;&amp;gt; 0 then 0 --Check for invalid character&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When len(@Email)-1 &amp;lt;= charindex('.', @Email) then 0--check for '%._' at end of string&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; When @Email like '%@%@%'or &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; @Email Not Like '%@%.%'&amp;nbsp; then 0--Check for duplicate @ or invalid format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Else 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; END&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;end&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="UDF_Mystery.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/191073_UDF_Mystery.png" style="height: 557px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:24:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5503#M608066</guid>
      <dc:creator>wdchristensen</dc:creator>
      <dc:date>2018-01-23T15:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5504#M608067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your select-statement isn't complete - it is missing the marked part:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select &lt;STRONG&gt;* from&lt;/STRONG&gt; "SomeTestDB".....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further I doubt that you could call the UDF in this way - normally functions are called with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function(FIELD) as FieldAdjusted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 15:58:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5504#M608067</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-01-23T15:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5505#M608068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SQL select generally has the path at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So something like the below might help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL Select&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;From UDf.ValidateEmail;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select&lt;/P&gt;&lt;P&gt;Field1,&lt;/P&gt;&lt;P&gt;Field2 as TestUDF&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;[testdb].[dbo].[UDF.ValidateEmail];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:16:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5505#M608068</guid>
      <dc:creator>snehamahaveer</dc:creator>
      <dc:date>2018-01-23T16:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5506#M608069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="UDF_SQLexample.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/191076_UDF_SQLexample.png" style="height: 181px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5506#M608069</guid>
      <dc:creator>wdchristensen</dc:creator>
      <dc:date>2018-01-23T16:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5507#M608070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks for the responses! &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;In an attempt to keep the example simple, I neglected to include a “&lt;EM&gt;from&lt;/EM&gt;” clause as is unnecessary to illustrate my point. The error is the same if I were to call the udf as follows: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN&gt;Select *, [testdb].[dbo].[ValidateEmail] (&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:'TestEmail@gmail.com"&gt;'TestEmail@gmail.com&lt;/A&gt;&lt;SPAN&gt;') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;from [testdb].[dbo].[EmployeeTbl];&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:23:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5507#M608070</guid>
      <dc:creator>wdchristensen</dc:creator>
      <dc:date>2018-01-23T16:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5508#M608071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. It seems to be a valid sql-statement within your database but your used database-driver must support it and return some kind of table to Qlik - I have some doubts that it will return a table else that it is some kind of special feature within your db.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5508#M608071</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-01-23T16:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5509#M608072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would rather try an approach like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Select *, UDF.ValidateEmail(&lt;A class="jive-link-email-small" href="mailto:%27TestEmail@gmail.com"&gt;'TestEmail@gmail.com&lt;/A&gt;') as Email&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;from [testdb].[dbo].[EmployeeTbl];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5509#M608072</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-01-23T16:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5510#M608073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the revised query syntax I get the same error. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:44:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5510#M608073</guid>
      <dc:creator>wdchristensen</dc:creator>
      <dc:date>2018-01-23T16:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5511#M608074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would check if a select * from on the table worked. If yes and then afterwards the function-call of your UDF failed meant that either the call-syntax is wrong or the driver didn't support it - maybe there are alternate drivers available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:52:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5511#M608074</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-01-23T16:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5512#M608075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The sql works in the load script until I add the UDF with a parameter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the &lt;STRONG&gt;Microsoft OLE DB Provider for SQL Server&lt;/STRONG&gt; driver with other tools using udfs with no issues so it is looking like a Qlik bug to me. &lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Unfortunately&lt;/SPAN&gt; I am on Qlik Sense 3.2 and I am pretty sure this bug has been fixed 'November 2017' so all I really need to do is upgrade, right? #psychic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;IMG alt="connectionSQLServer.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/191091_connectionSQLServer.png" style="height: 153px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;I appreciate you taking the time to reply to my issue. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 17:38:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5512#M608075</guid>
      <dc:creator>wdchristensen</dc:creator>
      <dc:date>2018-01-23T17:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5513#M608076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tested in Nov2017 patch 1 desktop and it worked without error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interestingly, when I code it up in a Query Window in SQL Management studio,&amp;nbsp; I get a syntax underline with the exact error message you posted.&amp;nbsp; However it executes fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 18:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5513#M608076</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-01-23T18:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server User Defined Function (UDF) generates error in load script</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5514#M608077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Hi Rob, based on your feedback I ran the code in question on Qlik Desktop &lt;/SPAN&gt;&lt;SPAN lang="EN" style="font-size: 10.0pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d;"&gt;'November 2017' and the code worked perfectly. This confirms what I suspected. This issue is a known bug with version 3.2 and the solution is to upgrade. &lt;A _jive_internal="true" href="https://community.qlik.com/thread/283897"&gt;https://community.qlik.com/thread/283897&lt;/A&gt;&amp;nbsp; #GoundHogDay #3.2BetaRelease&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 20:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-Server-User-Defined-Function-UDF-generates-error-in-load/m-p/5514#M608077</guid>
      <dc:creator>wdchristensen</dc:creator>
      <dc:date>2018-01-23T20:40:53Z</dc:date>
    </item>
  </channel>
</rss>

