DataZen Dashboards Update
I’ve spend a good three days on and off working with the new “Microsoft” DataZen dashboard tool and I think...
2015-04-29
693 reads
I’ve spend a good three days on and off working with the new “Microsoft” DataZen dashboard tool and I think...
2015-04-29
693 reads
Last week Microsoft announced that they had acquired the DataZen mobile BI platform and were adding it to their enterprise...
2015-04-26
465 reads
Last week Microsoft announced that they had acquired the DataZen mobile BI platform and were adding it to their enterprise...
2015-04-26
201 reads
It was a great honor to be asked to join my associates from SolidQ at the Microsoft Virtual Academy Studios...
2015-04-12
437 reads
It was a great honor to be asked to join my associates from SolidQ at the Microsoft Virtual Academy Studios...
2015-04-12
171 reads
There have been a lot of changes in and around Microsoft in the past few months. Under the leadership of...
2015-02-04
437 reads
There have been a lot of changes in and around Microsoft in the past few months. Under the leadership of...
2015-02-04
175 reads
I’ve created a series of five tutorial videos for a set of workshops I’ll be doing at several events this...
2015-01-29
1,137 reads
I’ve created a series of five tutorial videos for a set of workshops I’ll be doing at several events this...
2015-01-29
662 reads
Some exciting announcements were made today about the new Power BI cloud-based business analytics service. Today Power BI is an...
2015-01-28
580 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