<?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: Power BI Dashboard real time integration in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91365#M41396</link>
    <description>Hi Amlan,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;i)Create a table in SQL - Table need to have same fields of the collection which you are intended to update in&amp;nbsp; Tableau.&lt;BR /&gt;&lt;BR /&gt;ii)In the code stage&amp;nbsp; you need to create sql bulk copy to push the data to sql, And connect the sql to tableau.&lt;BR /&gt;iii) once&amp;nbsp; the data is in collecion, Call the sql bulk copy it will copy all the data from&amp;nbsp; blue prism collection to sql&amp;nbsp; and it automatically update to Tableau(If you're tableau source is connected to Data base).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SqlConnection con = new SqlConnection(con_string);&lt;BR /&gt;SqlBulkCopy bulk = new SqlBulkCopy(con);&lt;BR /&gt;bulk.DestinationTableName = Dest_Table;&lt;BR /&gt;con.open();&lt;BR /&gt;bulk.WriteToServer(coll);&lt;BR /&gt;con.close()&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Input parameters&lt;BR /&gt;con_String(Text) - connection String of SQL table&lt;BR /&gt;Dest_Table(Collection) - SQL Table&lt;BR /&gt;coll(Collection) -&amp;nbsp; Source collection&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Harish&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 11 Feb 2020 14:19:00 GMT</pubDate>
    <dc:creator>HarishM2</dc:creator>
    <dc:date>2020-02-11T14:19:00Z</dc:date>
    <item>
      <title>Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91362#M41393</link>
      <description>Hi, I want to integrate blue prism logs with power bi, could you please help me with the configuration steps and how to fetch different tables from blueprism database in order to showcase the real time data into the dashboard.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SANJIB SINHA&lt;BR /&gt;Software Senior Engineer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Aug 2019 01:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91362#M41393</guid>
      <dc:creator>SANJIBSINHA</dc:creator>
      <dc:date>2019-08-01T01:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91363#M41394</link>
      <description>Hi Sanjib,&lt;BR /&gt;&lt;BR /&gt;When you say logs it means work queue data or session logs?&amp;nbsp;&lt;BR /&gt;If you are talking about session logs&amp;nbsp; I think you need to&amp;nbsp; create a view using joins to connect different tables and populate the required columns and connect the sql table to Power BI(And you need to create similar columns in power BI to accept the data from sql )&lt;BR /&gt;If its is work queue data&amp;nbsp; you need to&amp;nbsp; create a new table and Before completing the&amp;nbsp; process update the table&amp;nbsp; every time it run's. and connect this table to Power BI.&lt;BR /&gt;&lt;BR /&gt;I connected the work queue data with tableau, It might be similar to do in&amp;nbsp; power BI. There are different ways to connect data most of the business tool like&amp;nbsp; sql, excel or cloud data....&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Harish kumar&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Aug 2019 12:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91363#M41394</guid>
      <dc:creator>HarishM2</dc:creator>
      <dc:date>2019-08-01T12:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91364#M41395</link>
      <description>HI Harish,&lt;BR /&gt;&lt;BR /&gt;Could you please tell me how you have sent data to Tableau.&lt;BR /&gt;I am going to do the same what you have done.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Amlan Sahoo&lt;BR /&gt;RPA Consultant&lt;BR /&gt;Equinix&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Feb 2020 09:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91364#M41395</guid>
      <dc:creator>_Amlansahoo</dc:creator>
      <dc:date>2020-02-11T09:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91365#M41396</link>
      <description>Hi Amlan,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;i)Create a table in SQL - Table need to have same fields of the collection which you are intended to update in&amp;nbsp; Tableau.&lt;BR /&gt;&lt;BR /&gt;ii)In the code stage&amp;nbsp; you need to create sql bulk copy to push the data to sql, And connect the sql to tableau.&lt;BR /&gt;iii) once&amp;nbsp; the data is in collecion, Call the sql bulk copy it will copy all the data from&amp;nbsp; blue prism collection to sql&amp;nbsp; and it automatically update to Tableau(If you're tableau source is connected to Data base).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SqlConnection con = new SqlConnection(con_string);&lt;BR /&gt;SqlBulkCopy bulk = new SqlBulkCopy(con);&lt;BR /&gt;bulk.DestinationTableName = Dest_Table;&lt;BR /&gt;con.open();&lt;BR /&gt;bulk.WriteToServer(coll);&lt;BR /&gt;con.close()&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Input parameters&lt;BR /&gt;con_String(Text) - connection String of SQL table&lt;BR /&gt;Dest_Table(Collection) - SQL Table&lt;BR /&gt;coll(Collection) -&amp;nbsp; Source collection&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Harish&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Feb 2020 14:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91365#M41396</guid>
      <dc:creator>HarishM2</dc:creator>
      <dc:date>2020-02-11T14:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91366#M41397</link>
      <description>Thanks Harish. For your help i will get back if i stuck anywhere.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Amlan Sahoo&lt;BR /&gt;RPA Consultant&lt;BR /&gt;Equinix&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Feb 2020 06:06:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91366#M41397</guid>
      <dc:creator>_Amlansahoo</dc:creator>
      <dc:date>2020-02-12T06:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91367#M41398</link>
      <description>Hi Harish,&lt;BR /&gt;&lt;BR /&gt;Could you please explain how to connect blue prism work queue to Power BI.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;Sadath Sheik&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sadath Sheik&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Jan 2021 07:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91367#M41398</guid>
      <dc:creator>SadathSheik</dc:creator>
      <dc:date>2021-01-07T07:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91368#M41399</link>
      <description>Hi Sadath,&lt;BR /&gt;&lt;BR /&gt;My recommendation is don't connect your Blue Prism Database to any 3rd party BI or reporting tool, especially real-time. It may harm the performance of all Blue Prism environment. However, there are two main way to connect Power BI to BP Database.&lt;BR /&gt;&lt;BR /&gt;1. As Harish recommend before, you can create BP project or an other automated job to write desired data from BP database to an other database. Then connect this database from Power BI. You may want schedule this job to most suitable time period.&lt;BR /&gt;2. Use import or directquery in Power BI. Set SQL Datasource as BP Database.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Taha Sonmez&lt;BR /&gt;ROM Architect&lt;BR /&gt;SabanciDx&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jan 2021 15:43:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91368#M41399</guid>
      <dc:creator>TahaSonmez</dc:creator>
      <dc:date>2021-01-15T15:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91369#M41400</link>
      <description>Hi Sadath,&lt;BR /&gt;&lt;BR /&gt;I didn't tried in Power BI . But My guess is it work in similar wayas Tableau. As Sonmez mentioned you might need to follow second steop to connect Power BI. Also he rightly suggested not to use Blue Prism Database for Dashboatd&amp;nbsp; If you try to use Pro database it&amp;nbsp; will massively impact on your&amp;nbsp; Prod environment.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Harish&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jan 2021 15:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91369#M41400</guid>
      <dc:creator>HarishM2</dc:creator>
      <dc:date>2021-01-15T15:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91370#M41401</link>
      <description>&lt;P&gt;It would definitely not be recommended to connect a dashboard to read directly from a production Blue Prism database. This can significantly impact the operational performance of Blue Prism and can result in failures executing processes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The safest way to implement a dashboard would be to read the data from a replica of the production Blue Prism database, to achieve near real time reporting I would suggest looking into;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SQL Server Availability Group Readable Secondary Replicas&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/active-secondaries-readable-secondary-replicas-always-on-availability-groups?view=sql-server-ver15" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/active-secondaries-readable-secondary-replicas-always-on-availability-groups?view=sql-server-ver15&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/configure-read-only-access-on-an-availability-replica-sql-server?view=sql-server-ver15" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/configure-read-only-access-on-an-availability-replica-sql-server?view=sql-server-ver15&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Transactional Replication&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/relational-databases/replication/transactional/transactional-replication?view=sql-server-ver15" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/sql/relational-databases/replication/transactional/transactional-replication?view=sql-server-ver15&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data Gateways may also be an option, with Data Gateways you can output Session Logs, Published Dashboards, Work Queue Item Snapshots along with custom data (when processes are integrated with the Data Gateways Internal Business Object). This data can be sent to files, Splunk, another SQL Server database or a HTTP endpoint in a JSON format. See the "User Guide - Data Gateways" document on the portal for more information on Data Gateways.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Chris McGowan&lt;BR /&gt;Senior Technical Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jan 2021 16:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91370#M41401</guid>
      <dc:creator>chris.mcgowan</dc:creator>
      <dc:date>2021-01-15T16:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: Power BI Dashboard real time integration</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91371#M41402</link>
      <description>Hi Harish,&lt;BR /&gt;is there any way to refresh data in current tableau file and export pakaged work book from there by using Blue Prism?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Sourabh&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sourabh Singh&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Aug 2021 13:09:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Power-BI-Dashboard-real-time-integration/m-p/91371#M41402</guid>
      <dc:creator>SourabhSingh1</dc:creator>
      <dc:date>2021-08-18T13:09:00Z</dc:date>
    </item>
  </channel>
</rss>

