Hi Amlan,
i)Create a table in SQL - Table need to have same fields of the collection which you are intended to update in Tableau.
ii)In the code stage you need to create sql bulk copy to push the data to sql, And connect the sql to tableau.
iii) once the data is in collecion, Call the sql bulk copy it will copy all the data from blue prism collection to sql and it automatically update to Tableau(If you're tableau source is connected to Data base).
SqlConnection con = new SqlConnection(con_string);
SqlBulkCopy bulk = new SqlBulkCopy(con);
bulk.DestinationTableName = Dest_Table;
con.open();
bulk.WriteToServer(coll);
con.close()
Input parameters
con_String(Text) - connection String of SQL table
Dest_Table(Collection) - SQL Table
coll(Collection) - Source collection
------------------------------
Harish
RPA Developer
------------------------------
Original Message:
Sent: 02-11-2020 04:46
From: Amlan Sahoo
Subject: Power BI Dashboard real time integration
HI Harish,
Could you please tell me how you have sent data to Tableau.
I am going to do the same what you have done.
------------------------------
Amlan Sahoo
RPA Consultant
Equinix
Original Message:
Sent: 08-01-2019 08:44
From: Harish M
Subject: Power BI Dashboard real time integration
Hi Sanjib,
When you say logs it means work queue data or session logs?
If you are talking about session logs I think you need to 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 )
If its is work queue data you need to create a new table and Before completing the process update the table every time it run's. and connect this table to Power BI.
I connected the work queue data with tableau, It might be similar to do in power BI. There are different ways to connect data most of the business tool like sql, excel or cloud data....
Thanks
------------------------------
Harish kumar
RPA Developer
Original Message:
Sent: 07-31-2019 21:58
From: SANJIB SINHA
Subject: Power BI Dashboard real time integration
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.
------------------------------
SANJIB SINHA
Software Senior Engineer
------------------------------