Why I Believe In In-Person Training
I was recently asked a question from a manager regarding someone on my team when I requested to send them to a training experience:
Are there CBT based alternatives that...
2019-04-04
57 reads
I was recently asked a question from a manager regarding someone on my team when I requested to send them to a training experience:
Are there CBT based alternatives that...
2019-04-04
57 reads
I took a break from blogging this week to finish the course for and get certified with Orchestrating Big Data...
2019-04-03 (first published: 2019-03-16)
1,112 reads
Let’s be honest here, data security is really important to me. Some people probably think that I go to extremes...
2019-04-03 (first published: 2019-03-15)
737 reads
File and file group VLDB very large database....
[[ This is a content summary only. Visit my website for full links, other content, and more! ]]
2019-04-03
35 reads
Do your eyes start to cross whenever you think about isolation levels? Mine did, too. Here's how I keep it all straight.
2019-04-03
32 reads
Jurassic Park was a great film. Steven Spielberg brought technology into the film era in a major way with computer generated dinosaurs and some now-classic film lines, many of...
2019-04-03
42 reads
I’m very happy to announce that for the very first time I will be participating as speaker in the 24 hours of PASS event. This specific instance of 24...
2019-04-03
16 reads
You can still register, but join me later today for SQL in the City Streamed, along with Grant, Kathi, and Kendra. We’re all in the Redgate Software office today...
2019-04-03
17 reads
With the release of the 22nm Ivy Bridge microarchitecture less than three weeks away, at the end of April 2012,...
2019-04-02 (first published: 2012-04-10)
3,186 reads
Thursday April 4 I'll be giving a workshops at the super-slick-branded Activate Conference 2019 in Baton Rouge at the Louisiana Technology Park, a conference filled with people and topics...
2019-04-02
6 reads
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...
Every Scooby-Doo mystery starts with a haunted house, a strange villain, and a trail...
Comments posted to this topic are about the item The Tightly Linked View
Comments posted to this topic are about the item Build a Test Lab of...
Comments posted to this topic are about the item Remembering Phil Factor
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