Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in BI by (11.1k points)
How can we stream data from SQL server to create real dashboards?

1 Answer

0 votes
by (22.5k points)

Add the following SQL query

CREATE VIEW dbo.VW_RealTimeDataStreamExample

AS

SELECT d.CustKey, f.DateKey, f.ProductKey, f.DateOfSale, f.Quantity, f.Cost, d.UpdateDate AS CustomerUpdateDate,

F.UpdateDate as FactUpdateDate, d.Name

FROM [fact].[RealTimedatatestingDE]f

INNER JOIN[dim].[RealTimedatatestingcustomerDE] d ON f.CustKey = d.CustKey

and go to Power Bi services and choose a streaming dataset

Want to learn more about Power BI? Check out today: Power BI course   

Related questions

0 votes
1 answer
asked Dec 1, 2020 in BI by Chris (11.1k points)
0 votes
1 answer
0 votes
1 answer
asked Nov 22, 2020 in BI by Chris (11.1k points)
0 votes
1 answer
0 votes
1 answer
asked Apr 5, 2021 in BI by Chris (11.1k points)

Browse Categories

...