This Week In Data – Episode 12 (How to Interview a Customer)
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-11-09
408 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-11-09
408 reads
In this module you will learn how to use the Globe Map Power BI Custom Visual. The Globe Map is...
2016-11-07
916 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-11-02
474 reads
In this module you will learn how to use the Sparkline Power BI Custom Visual. The Sparkline allows you to...
2016-11-01
661 reads
I’m just returning from an amazing week at PASS Summit where I meet many of you while working our Pragmatic...
2016-11-08 (first published: 2016-10-31)
1,467 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-10-28
839 reads
In this module you will learn how to use the Force-Directed Graph Power BI Custom Visual. The Force-Directed Graph allows...
2016-10-24
857 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-10-19
733 reads
In this module, you will learn how to use the Advanced Time Slicer Power BI Custom Visual. The Advanced Time...
2016-11-01 (first published: 2016-10-17)
1,583 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-10-12
511 reads
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...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
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