2011-10-06 (first published: 2009-12-02)
9,352 reads
2011-10-06 (first published: 2009-12-02)
9,352 reads
2011-10-04 (first published: 2009-11-26)
11,110 reads
2011-09-29 (first published: 2009-11-18)
10,441 reads
2011-09-27 (first published: 2009-10-28)
9,673 reads
2011-09-22 (first published: 2009-10-21)
10,929 reads
2011-09-20 (first published: 2009-10-14)
10,004 reads
2011-09-15 (first published: 2009-10-07)
8,030 reads
2011-09-13 (first published: 2009-09-30)
8,059 reads
2011-09-08 (first published: 2009-09-23)
6,748 reads
When a job is too simple to be done in-house, how far down the phylogenetic tree should you go?
2011-09-06 (first published: 2009-09-16)
7,666 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