Insurance For Events
Posting here mostly because I’ll need this link again sooner or later! We’re hosting our more or less annual joint...
2016-04-12
526 reads
Posting here mostly because I’ll need this link again sooner or later! We’re hosting our more or less annual joint...
2016-04-12
526 reads
I won’t say never, but it’s unlikely I’d move for a job – my roots are here in Orlando and I...
2016-04-07
439 reads
Register to attend this joint chapter meeting at https://www.eventbrite.com/e/opassmagicpass-joint-april-meeting-w-ben-miller-tickets-24457339561.
OPASS and MagicPASS are proud to present a special joint meeting with Ben...
2016-04-06
558 reads
Is Powershell intimidating? It’s an interesting question, though perhaps unfair – TSQL can be intimidating when you first start out too....
2016-04-04
514 reads
It’s still a bit hard to believe that SQL Server will soon run on Linux. If you think back to...
2016-04-01
642 reads
I was pleased to hear today that I was selected for the 2016 NomCom, along with Joaquin Romero, Erin Stellato,...
2016-03-31
989 reads
Quick notes:
Chinese food instead of pizza (thanks Shawn!)The wine bar is doing some remodeling to make better use of the...
2016-03-28
590 reads
Is being on time important? I think that might be a revealing interview question. The answer might or might not...
2016-03-24
526 reads
I submitted my letter just a few minutes ago. It’s a template, doesn’t take more than 5 minutes to fill out and...
2016-03-23
478 reads
I listened to most of the town hall today. The main topic was the just voted on changes to the...
2016-03-18
595 reads
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...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
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