SQLFamily.Org
Back in March 2013 I wrote We Need A Place For SQLFamily News after the death of the spouse of...
2014-12-01
513 reads
Back in March 2013 I wrote We Need A Place For SQLFamily News after the death of the spouse of...
2014-12-01
513 reads
I was pleased to get the email yesterday confirming that I was selected to speak at SQLSaturday #362 on January...
2014-11-21
596 reads
This is a follow up to a thought I voiced on Twitter last week – the value of a once a...
2014-11-18
565 reads
After wrapping up my part of SQLSaturday Orlando this year I’ve been thinking on what if anything we might do...
2014-11-17
751 reads
Based on limited but practical experience I believe chapters typically work hardest to find speakers and sponsors, the latter being...
2014-11-13
566 reads
Looking for a reason to show up at the 2015 PASS Summit on Monday, or just want something fun to...
2014-11-12
677 reads
I missed the Summit this year, but tried to follow along remotely via Twitter, PASSTV, and the blog posts I...
2014-11-07
931 reads
Each year for the past few years the PASS Board of Directors has conducted a Q&A session with members at...
2014-11-06
968 reads
Due to a minor health issue I’ve decided to – for once – be conservative and cancel the trip this year. I’ve...
2014-10-31
1,271 reads
SQLSaturday Tampa is the first SQLSaturday in Florida for 2015, scheduled for February 28th, 2015. The event is held at...
2014-10-29
1,257 reads
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...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
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