Tampa Code Camp is December 2, 2008
In recent years this event has been held in July, but this year they ran into problems when the planned...
2008-09-17
451 reads
In recent years this event has been held in July, but this year they ran into problems when the planned...
2008-09-17
451 reads
Cross functional teams sounds a lot like a buzzword, and maybe it is to a degree - but still worth talking...
2008-09-16
562 reads
We experimented with some video training back in 2004/2005 on SSC, but we just didn't have the time/energy to pursue...
2008-09-15
568 reads
Pam Shaw & Wes Dumey are leading the charge for the 2nd annual Tampa SQLSaturday on January 24, 2009. They are...
2008-09-14
476 reads
One very common mistake I see when reviewing code is the case where the select statement is returning multiple rows,...
2008-09-14
525 reads
One of the big decisions around vacations is whether it should be a 'do something' vacation or a 'do nothing'...
2008-09-11
1,250 reads
It's pretty common to see a mild plea from blog authors asking for feedback, or ideas about which to write...
2008-09-10
415 reads
PASS asked all speakers to update their blogs with news about the event (a good idea), so here's my post!
I'll...
2008-09-10
382 reads
I'm a couple weeks last posting this, but wanted to get my notes down anyway for future use. The goal of...
2008-09-09
463 reads
I'll define a brown bag lunch as a training event held at lunch time where someone on the team does...
2008-09-08
1,093 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