New Cartoons at SQLServerCentral
SQLServerCentral has commissioned a new cartoon that will be coming later this week.
2014-02-03
2,557 reads
SQLServerCentral has commissioned a new cartoon that will be coming later this week.
2014-02-03
2,557 reads
2011-11-10 (first published: 2010-02-24)
11,568 reads
2011-08-11 (first published: 2009-07-29)
9,829 reads
2011-07-14 (first published: 2009-06-10)
7,093 reads
2011-06-21 (first published: 2009-04-15)
8,455 reads
2011-06-14 (first published: 2009-04-08)
7,723 reads
2011-06-09 (first published: 2009-04-01)
13,269 reads
Digitization transforms yet another of our most cherished traditions.
2011-06-07 (first published: 2009-03-25)
9,622 reads
2011-06-02 (first published: 2009-03-18)
10,091 reads
An elementary error foils Peter's plans for world domination.
2011-05-31 (first published: 2009-03-11)
10,602 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