Thoughts on the 2015 PASS Election
We had a decent election this year. Thanks to all four candidates – Argenis Fernandez, Jen Stirrup, Ryan Adams, and Tim...
2015-09-25
673 reads
We had a decent election this year. Thanks to all four candidates – Argenis Fernandez, Jen Stirrup, Ryan Adams, and Tim...
2015-09-25
673 reads
Counter offers (and the related discussions) are an emotional topic. The comments on two of my editorials for SQLServerCentral (The...
2015-09-23
591 reads
We have four good candidates this year, of which two are incumbents. I was asked by Argenis and Tim to...
2015-09-17
619 reads
This week I’m spending some drive time thinking about how we might improve networking at SQLSaturday and that led to...
2015-09-22 (first published: 2015-09-10)
1,150 reads
Going to be in Seattle on Monday night (Oct 26th) and want to see old friends and make some new...
2015-09-02
600 reads
The Problem Solver. Ever scoffed at personality types? Surely none of us are just one thing, but often we are...
2015-08-31
1,120 reads
One of the big goals for SQLSaturday was for it to be a membership drive. It’s worked hugely well in...
2015-08-27
708 reads
Compliance training, never a fun topic and I think that is too bad. A combination of companies checking the box,...
2015-08-26
708 reads
When a new SQLSaturday event is launched an email is sent to all the speakers who have opted in to...
2015-08-25
624 reads
Meeting is held at Sonny’s BBQ, they have a long room (used to be outside seating) that works pretty well...
2015-08-17
619 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