Upcoming speaking events
Back in March I did my first “feature length” presentation at SQL Saturday Iceland
At that point I’d done a few...
2017-09-04
255 reads
Back in March I did my first “feature length” presentation at SQL Saturday Iceland
At that point I’d done a few...
2017-09-04
255 reads
Going to be a busy few weeks as conference season gets into full swing. Really looking forward to the next...
2017-09-01
324 reads
I’ve been meaning to get to grips with Kubernetes for a while now but I have to admit, I was...
2017-08-30
867 reads
Last week I was working on an upgrade and ran into a few issues. Whilst waiting for the company’s support...
2017-08-28
297 reads
Great week this week as I’ve been selected to speak at 4 of the SQL Relay events in October! Really...
2017-08-25
317 reads
I posted a couple of messages on twitter over the weekend giving any new bloggers advice that was given to...
2017-08-21
282 reads
One of the best features introduced in SQL Server 2016 was the Query Store. Having the ability to see which...
2017-08-19
526 reads
Cool week, I’ve been selected to present at SQL Saturday Holland & SQL Saturday Denmark this year. September and October are...
2017-08-18
372 reads
Last week I presented my session on SQL Server & Containers for the PASS Virtualization Group and during my prep I...
2017-08-28 (first published: 2017-08-16)
2,916 reads
Nice to be back after a week off. I’ve been writing three posts a week (sometimes more) since the beginning...
2017-08-14
343 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