2011-11-15 (first published: 2010-03-03)
9,845 reads
2011-11-15 (first published: 2010-03-03)
9,845 reads
2011-11-10 (first published: 2010-02-24)
11,568 reads
2011-11-08 (first published: 2010-02-10)
11,433 reads
2011-11-03 (first published: 2010-02-03)
12,683 reads
2011-11-01 (first published: 2010-01-27)
10,654 reads
2011-10-27 (first published: 2010-01-20)
11,467 reads
2011-10-25 (first published: 2010-01-06)
11,566 reads
A tale from the days when civilization was young and everything was harder than it is now.
2011-10-20 (first published: 2009-12-30)
10,723 reads
2011-10-18 (first published: 2009-12-23)
9,303 reads
2011-10-13 (first published: 2009-12-16)
8,815 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