Oregon SQL Saturday 2015 Keynote
This year we are honored to have a particularly special guest kicking off our SQL Saturday event on October 24th. ...
2015-10-02
240 reads
This year we are honored to have a particularly special guest kicking off our SQL Saturday event on October 24th. ...
2015-10-02
240 reads
It's really exciting to see the first round of entries into the Power BI Best Visuals Contest, which has been...
2015-09-22
842 reads
It's really exciting to see the first round of entries into the Power BI Best Visuals Contest, which has been...
2015-09-22
396 reads
What! NO? Get with it, my friend. Power BI is for everyone. All the kids are doing it… not to...
2015-08-18
464 reads
What! NO? Get with it, my friend. Power BI is for everyone. All the kids are doing it… not to...
2015-08-18
247 reads
On Friday, James Phillips, Microsoft VP of Business Intelligence, announced the general availability of the new Power BI Business Analytics...
2015-07-12
760 reads
On Friday, James Phillips, Microsoft VP of Business Intelligence, announced the general availability of the new Power BI Business Analytics...
2015-07-12
251 reads
I’d like to make you aware of a three-hour training event that I will be presenting, hosted by SQL Server...
2015-07-11
663 reads
I’d like to make you aware of a three-hour training event that I will be presenting, hosted by SQL Server...
2015-07-11
233 reads
Please join me at the PASS Global Summit in Seattle for a half-day, 3-hour hands-on Power BI mini workshop. Bring...
2015-07-02
2,060 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