Wayne Synder Elected President of PASS
Congratulations to Wayne on becoming President! I've known him for years and you couldn't ask for a guy with more...
2007-09-23
1,416 reads
Congratulations to Wayne on becoming President! I've known him for years and you couldn't ask for a guy with more...
2007-09-23
1,416 reads
I see they finally rolled out the new site. Lots of annoying quirks so far, the biggest for me is...
2007-09-23
1,348 reads
Today was interesting. I headed for breakfast and after a few stops to chat with friends, wound up sitting with...
2007-09-21
1,459 reads
Denver is a great location for a conference. The convention center is two blocks from the 16th street mall - must...
2007-09-19
522 reads
One of the points mentioned in the volunteer meeting on Tuesday was that it makes a lot of sense to...
2007-09-19
536 reads
I attended the morning portion of the volunteer/chapter meeting today and got to put some names with faces for some...
2007-09-18
579 reads
Last week I taught 'Successful Technical Speaking' for the first time - it's a free four class I put together for...
2007-09-17
774 reads
I'm flying out tomorrow for the event and looking forward to it, nice break from the office/work routine, a chance...
2007-09-16
488 reads
You might call me a bean counter, but it's a fact that every manager needs to manage the distractions that...
2007-09-11
509 reads
Saw an plug for it from our sales rep yesterday, MD3000i. Starts at $7300 with just a couple drives, goes...
2007-09-11
483 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