2011-09-01 (first published: 2009-09-09)
11,442 reads
2011-09-01 (first published: 2009-09-09)
11,442 reads
Total Information Awareness can destroy your sanity. Get used to it.
2011-08-30 (first published: 2009-09-02)
11,265 reads
2011-08-25 (first published: 2009-08-26)
11,033 reads
2011-08-23 (first published: 2009-08-19)
11,009 reads
2011-08-18 (first published: 2009-08-12)
9,504 reads
2011-08-16 (first published: 2009-08-05)
9,027 reads
Revenge is a dish best served cold, but body temperature's OK, too.
2011-08-09 (first published: 2009-07-22)
9,332 reads
2011-08-04 (first published: 2009-07-15)
10,122 reads
2011-08-02 (first published: 2009-07-08)
9,681 reads
2011-07-28 (first published: 2009-07-01)
10,454 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