April MVP – Chris Yates
The April MVP nomination is Chris Yates (B|T).
Chris is one of those individuals that always have a positive outlook on...
2016-04-28
873 reads
The April MVP nomination is Chris Yates (B|T).
Chris is one of those individuals that always have a positive outlook on...
2016-04-28
873 reads
As many of you know, I stay very active within the PASS community. In late 2007 I got my start,...
2016-04-14
487 reads
The March nomination is Gareth Swanepoel (B|T).
If you don’t know Gareth you should make it a point to get to know...
2016-03-31
767 reads
In a galaxy far, far, far away a developer of a third party application somewhere in the Hoth system had to...
2016-03-29
887 reads
The February MVP nomination goes to Melody Zacharias (B|T).
Melody hails from our neighboring country to the north, beautiful Canada. While we...
2016-03-17
422 reads
In case you missed it, back in November I blogged about the importance of nominating individuals within the SQL Server...
2016-03-10
374 reads
If you are a member of PASS, you probably got an email from our President, Thomas LaRock. I interpreted his...
2015-11-25
606 reads
If you follow Grant Fritchey (B|T) at all, you know that every month he picks a “Speaker of the Month”....
2015-11-19
448 reads
If you have been around the SQL Community long enough, you probably have heard of a software company called Idera....
2015-10-28
684 reads
This weekend I’ll be traveling to Kansas City, Missouri for their annual SQL Saturday. Normally, I would just drive to this...
2015-10-01
457 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...
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...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
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