<?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 Power BI Push Dataset in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2462991#M35600</link>
    <description>&lt;P&gt;Hi All,&lt;BR /&gt;I'm trying to create Power BI push dataset for real time data and My source is memsql.&lt;BR /&gt;Is there way to insert data from memsql to Power BI push datset using Python?&lt;BR /&gt;Please help me on this?&lt;/P&gt;</description>
    <pubDate>Tue, 19 Apr 2022 08:35:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-04-19T08:35:14Z</dc:date>
    <item>
      <title>Power BI Push Dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2462991#M35600</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;I'm trying to create Power BI push dataset for real time data and My source is memsql.&lt;BR /&gt;Is there way to insert data from memsql to Power BI push datset using Python?&lt;BR /&gt;Please help me on this?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 08:35:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2462991#M35600</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-19T08:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Push Dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2470700#M35642</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I am not familiar with &lt;SPAN&gt;memsql&lt;/SPAN&gt;, here are some video (blogs) on how to connect to MYSQL and SQL Server using phython scripts in Power BI Desktop. Maybe you can refer to them to try to connect to MEMSQL...&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=ArgNV9j1lZo" target="_self"&gt;Use Python as a Data Source in Power BI&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1650610203945.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/703425iCBE31BB184F8E727/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_0-1650610203945.png" alt="yingyinr_0-1650610203945.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;SQL Server:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://datatofish.com/how-to-connect-python-to-sql-server-using-pyodbc/" target="_self"&gt;How to Connect Python to SQL Server using pyodbc&lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import pandas as pd
import pyodbc 
conn = pyodbc.connect('Driver={SQL Server};'
                      'Server=RON\SQLEXPRESS;'
                      'Database=test_database;'
                      'Trusted_Connection=yes;')

df = pd.read_sql_query('SELECT * FROM products', conn)
print(df)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_1-1650610493465.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/703433iD3DF69197BD6AE57/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yingyinr_1-1650610493465.png" alt="yingyinr_1-1650610493465.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;MySQL:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.geeksforgeeks.org/how-to-connect-python-with-sql-database/" target="_self"&gt;How to Connect Python with SQL Database?&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 06:56:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2470700#M35642</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-22T06:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Push Dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2470836#M35643</link>
      <description>&lt;P&gt;Appreciating your help, But our use case different.&lt;BR /&gt;Data ingested to memsql/mysql to every 3 minutes and I need to visualize the data in real time but power bi will not support direct query method to MySQL. So I'm creating streaming dataset for real time data. So I need to fetch the query and directly into dataset using service principal method?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 07:44:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2470836#M35643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-22T07:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Push Dataset</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2470945#M35646</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please review the following links and check whether they are what you want.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/connect-data/service-real-time-streaming#using-the-streaming-dataset-ui-to-push-data" target="_self"&gt;Using the Streaming Dataset UI to push data&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yingyinr_0-1650616173644.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/703495i0CDEDAE8E95CC88D/image-size/large?v=v2&amp;amp;px=999" role="button" title="yingyinr_0-1650616173644.png" alt="yingyinr_0-1650616173644.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/implementing-real-time-updates-in-power-bi-using-push-datasets-instead-of-directquery/" target="_self"&gt;Implementing real-time updates in Power BI using push datasets instead of DirectQuery&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://hevodata.com/learn/power-bi-real-time-streaming-2-easy-methods/" target="_self"&gt;Power BI Real Time Streaming: 2 Easy Methods&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 08:29:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Push-Dataset/m-p/2470945#M35646</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-04-22T08:29:44Z</dc:date>
    </item>
  </channel>
</rss>

