<?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 Oracle Stored procedure in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Oracle-Stored-procedure/m-p/458354#M171118</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;&lt;/P&gt;&lt;P&gt;Please help me in executing stored procedure which is in oracle db and need to pass multiple parameter value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Nov 2012 13:14:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-11-22T13:14:20Z</dc:date>
    <item>
      <title>Oracle Stored procedure</title>
      <link>https://community.qlik.com/t5/QlikView/Oracle-Stored-procedure/m-p/458354#M171118</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;&lt;/P&gt;&lt;P&gt;Please help me in executing stored procedure which is in oracle db and need to pass multiple parameter value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2012 13:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Oracle-Stored-procedure/m-p/458354#M171118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-11-22T13:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle Stored procedure</title>
      <link>https://community.qlik.com/t5/QlikView/Oracle-Stored-procedure/m-p/458355#M171119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;In Oracle, you can call a stored function with a syntax like: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;var result number &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;exec :result := pkg_ims_status.ext_checkdbstatus() &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;The function will return a value to be stored in the variable result. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;You can call the same function in QlikView using an ordinary SQL SELECT-statement like: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;SQL SELECT &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;pkg_ims_status.ext_checkdbstatus() as status; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;Running a stored procedure without returning any recordset: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;Use the function CALL to specify the name of the stored procedure. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;Example (Launches XYZ with the two parameters 2 &amp;amp; 5): &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;sql call XYZ ( 2 , 5 ); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"&gt;This works for both ODBC and OLE DB. However, when opening the connection using OLE DB, make sure to add (mode is write) before the finishing semi colon in the connection string&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Nov 2012 01:52:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Oracle-Stored-procedure/m-p/458355#M171119</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-11-23T01:52:41Z</dc:date>
    </item>
  </channel>
</rss>

