PASS Summit 2013 Schedule
Each year, I like to compile my own shortcut, cheat sheet version of the PASS Summit schedule. I’m not talking...
2013-09-10
1,049 reads
Each year, I like to compile my own shortcut, cheat sheet version of the PASS Summit schedule. I’m not talking...
2013-09-10
1,049 reads
So I’m studying a lot these days, and I find myself evaluating and reconsidering the theories of “study” that I’ve...
2013-09-09
690 reads
I’m studying my butt off for the soon-to-be-deprecated Microsoft Certified Master cert’s lab – and the three unfinished prerequisite certs I’ve...
2013-09-05
706 reads
We just finished the webshow last night, when one of our chatroom fellows – Nic Cain – told us that the MCM...
2013-08-31
1,180 reads
Last weekend I gave my “Unraveling Tangled Code” talk at SQL Saturday Oklahoma, and they were kind enough to record...
2013-08-30
1,115 reads
Let’s hear a story. The story is true, but elements have been generalized and fictionalized for simplicity, and so’s not...
2013-08-23
602 reads
The other day I found myself in a discussion about media – print, broadcast, and social – and having to explain why...
2013-08-14
864 reads
It’s summer here in the northern hemisphere, and in Texas we’re getting 100F-plus weather pretty consistently. This brain-frying weather may...
2013-08-12
576 reads
The T-SQL TRY/CATCH structure (“new” in SQL 2005!) is, as the professionals say, da bomb. It’s also underused and under-understood,...
2013-06-20
2,403 reads
A good many companies still have servers chugging along on SQL Server 2000 (or even, as some of us noted...
2013-06-13
901 reads
You can find the slides of my session on the €100 DWH in Azure...
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...
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