<?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: call a SQL Function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807896#M1033387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to call a function, this function deletes html labels and returns the string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Feb 2015 14:16:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-02-02T14:16:47Z</dc:date>
    <item>
      <title>call a SQL Function</title>
      <link>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807894#M1033385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to call a SQL Function from SQL Server, with a string field as parameter. This function returns a string. Can I call a SQL Function in the Load Script? How?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;__________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hola,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tengo que llamar a una función de SQL Server, pasandole por parametro un campo string y que me devuelva ese mismo campo depurado. ¿Se puede llamar a una función en el Load Script? ¿Como?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:10:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807894#M1033385</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-02T14:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: call a SQL Function</title>
      <link>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807895#M1033386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call a store procedure...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;André Gomes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:12:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807895#M1033386</guid>
      <dc:creator>agomes1971</dc:creator>
      <dc:date>2015-02-02T14:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: call a SQL Function</title>
      <link>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807896#M1033387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to call a function, this function deletes html labels and returns the string.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:16:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807896#M1033387</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-02T14:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: call a SQL Function</title>
      <link>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807897#M1033388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see this thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/37433"&gt;Call a function in SQL LOAD&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;André Gomes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 15:15:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807897#M1033388</guid>
      <dc:creator>agomes1971</dc:creator>
      <dc:date>2015-02-02T15:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: call a SQL Function</title>
      <link>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807898#M1033389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;BR /&gt; 1. If that function is simple then Call the function as normal sql statement from Qlik View as below.&lt;BR /&gt; QVtable:&lt;BR /&gt; Load *;&lt;BR /&gt; select * from [DB]..StringToList('1:2',':');&lt;BR /&gt; 2. Else Use stored procedure to call the function and execute the procedure in Qlik View&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 06:39:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/call-a-SQL-Function/m-p/807898#M1033389</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-27T06:39:53Z</dc:date>
    </item>
  </channel>
</rss>

