Speaking at Data ANZ 2021
Looking forward to speaking at Data ANZ 2021 this weekend. Data ANZ "is the data community event for the whole of Australia and New Zealand (and the world)"!
I'll be presenting...
2021-06-24
10 reads
Looking forward to speaking at Data ANZ 2021 this weekend. Data ANZ "is the data community event for the whole of Australia and New Zealand (and the world)"!
I'll be presenting...
2021-06-24
10 reads
On Tuesday I'm looking forward to presenting again at GroupBy Americas on a topic that was voted on by the attending public. This presentation "SQL Server Admin Best Practices...
2021-05-24
35 reads
Geeked to be speaking 2x on Saturday May 14, my second time speaking at #DataWeekender and at the very first Data Saturday Southwest 2021.
My Certification Exams Inside Out is one...
2021-05-14
8 reads
Looking forward to speaking to a brand new conference for us, the Minnesota Developers Conference 2021 on May 4 at 2pmCT. Christine and I will be presenting a talk that...
2021-05-04
12 reads
Starting this month, I'm leading a talk series with my teammates from the SQL Docs team at Microsoft. In this presentation we lay out just how easy it is,...
2021-04-13 (first published: 2021-04-08)
183 reads
Looking forward to speaking to one of our new home turf's data organizations, the Inland Northwest Data Professionals Association. My spouse Christine and I will be presenting a talk we're...
2021-04-08
15 reads
I'll be presenting at Certification Saturday 2021 this weekend! I'll be contributing my talk on How to "Think Like a Certification Exam" at 3pmGMT/8amPT.
Microsoft is offering any one certification exam for...
2021-04-08
19 reads
This is part five in a five part series this week, Moving into Consulting 101.
In the business consulting system, the clients are served by two separate yet equally important groups....
2021-04-07 (first published: 2021-03-26)
231 reads
This is part four in a five part series this week, Moving into Consulting 101.
Today's topics give you a numerical advantage in consulting. All have a common theme: don't wing...
2021-04-05 (first published: 2021-03-25)
265 reads
This is part three in a five part series this week, Moving into Consulting 101.
Today's topics talk about why you were hired. How is your work likely to be quantified,...
2021-04-02 (first published: 2021-03-24)
361 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