<?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: How to call Oracle stored procedure from Power BI report builder(Paginated Reports) in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/1394458#M25880</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/90017" target="_self"&gt;&lt;SPAN&gt;RakeshSinghr&lt;/SPAN&gt;&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is about Power BI report builder for paginated reports and not Power bi Desktop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Savita&lt;/P&gt;</description>
    <pubDate>Fri, 25 Sep 2020 01:55:37 GMT</pubDate>
    <dc:creator>savitaa</dc:creator>
    <dc:date>2020-09-25T01:55:37Z</dc:date>
    <item>
      <title>How to call Oracle stored procedure from Power BI report builder(Paginated Reports)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/1393211#M25868</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to call an Oracle Stored Procedure from Power BI report builder(Paginated Reports) .&amp;nbsp; I have created the oracle data source sucessfully. I&amp;nbsp; am able to run oracle sql queries as well but I am&amp;nbsp; having issues calling oracle SP.&amp;nbsp; Could any anyone please let me know the steps and possible provide an example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Savita&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 13:33:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/1393211#M25868</guid>
      <dc:creator>savitaa</dc:creator>
      <dc:date>2020-09-24T13:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Oracle stored procedure from Power BI report builder(Paginated Reports)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/1394169#M25878</link>
      <description>&lt;P&gt;hope this helps -&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Desktop/Oracle-Stored-Proc-in-PBI-Desktop/m-p/1318697#M571159" target="_blank"&gt;https://community.powerbi.com/t5/Desktop/Oracle-Stored-Proc-in-PBI-Desktop/m-p/1318697#M571159&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 21:47:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/1394169#M25878</guid>
      <dc:creator>RakeshSinghr</dc:creator>
      <dc:date>2020-09-24T21:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Oracle stored procedure from Power BI report builder(Paginated Reports)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/1394458#M25880</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/90017" target="_self"&gt;&lt;SPAN&gt;RakeshSinghr&lt;/SPAN&gt;&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is about Power BI report builder for paginated reports and not Power bi Desktop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Savita&lt;/P&gt;</description>
      <pubDate>Fri, 25 Sep 2020 01:55:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/1394458#M25880</guid>
      <dc:creator>savitaa</dc:creator>
      <dc:date>2020-09-25T01:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Oracle stored procedure from Power BI report builder(Paginated Reports)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/2201599#M33061</link>
      <description>&lt;P&gt;Okay, I was running into this same issue with Paginated reports and this is what I have learned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Oracle 12c you can use the DBMS_SQL.RETURN_RESULT(CursorName)&lt;/LI&gt;&lt;LI&gt;Orace 11g its not easy at all or very easy depending how you look at it.&lt;UL&gt;&lt;LI&gt;Just write a sql statement, yes this can be a maintanence nightmare, but you work with what they give you.&lt;/LI&gt;&lt;LI&gt;Write a function that returns a cursor the use:&lt;UL&gt;&lt;LI&gt;select extractvalue(column_value,'/ROW/LAST_NAME') LAST_NAME from table(xmlsequence(FunctionName(param)))&lt;/LI&gt;&lt;LI&gt;The above is slow and returns everything as a varchar&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For 11g I tried to use pipeline functions, but it still doesn' work once I publish the report and it has to use the on premise gateway.&amp;nbsp; I am making one last ditch effort to see if the PBI Admins installed the ODP.net correctly on those gateway servers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helped.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 13:28:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/2201599#M33061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-22T13:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Oracle stored procedure from Power BI report builder(Paginated Reports)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/2201694#M33064</link>
      <description>&lt;P&gt;Thanks so much for your feedback !&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 14:14:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-call-Oracle-stored-procedure-from-Power-BI-report-builder/m-p/2201694#M33064</guid>
      <dc:creator>savitaa</dc:creator>
      <dc:date>2021-11-22T14:14:52Z</dc:date>
    </item>
  </channel>
</rss>

