Power BI Takeover–Webinar Recording and Q&A
Last week I did a little experimental webinar that was outside our (Pragmatic Works) norm. Instead of our traditional 1...
2016-05-19 (first published: 2016-05-10)
2,346 reads
Last week I did a little experimental webinar that was outside our (Pragmatic Works) norm. Instead of our traditional 1...
2016-05-19 (first published: 2016-05-10)
2,346 reads
This is a temporary post that was not deleted. Please delete this manually. (621301ab-a053-48fc-a7ec-01dc1d5fe152 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2015-12-15
806 reads
In the latest Power BI Desktop a new Preview features was released that now allows you to connect using DirectQuery...
2015-11-06
1,948 reads
Today Microsoft officially released the new development tool for Power BI called Power BI Desktop. First of all let me...
2015-07-24
5,307 reads
**Information current as of 7/22/2015**
There’s lots of exciting news this week with Power BI so expect several short blog posts...
2015-07-27 (first published: 2015-07-22)
3,743 reads
A date dimension or table can be extremely important when working on a Power BI project, or BI projects in...
2015-06-16
5,651 reads
With the CTP2 of SQL Server 2016 now released you may be eager to try it out. One of the...
2015-05-28
2,467 reads
**Information is current as of 5/21/2015**
Recently Azure SQL Database was added as a new connection to the Power BI Preview....
2015-06-01 (first published: 2015-05-21)
2,820 reads
Have you ever had a user run a query against one of your largest tables only for them to immediately...
2015-04-03
16,270 reads
So you’ve come up with a great idea for a session and now you have to translate that idea into...
2015-03-05 (first published: 2015-02-24)
5,527 reads
Do you know if your SQL Server is really running at its best? To...
You can find the slides of my session on the €100 DWH in Azure...
By Steve Jones
This value is something that I still hear today: our best work is done...
Hi everyone I am writing an SP where there is logic inside the SP...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers