Automated Book Scanner & Pasta Ponchos
I've mentioned before that Jeff Duntemann is one of my favorite bloggers, and I thought I'd show why I enjoy...
2009-01-26
1,613 reads
I've mentioned before that Jeff Duntemann is one of my favorite bloggers, and I thought I'd show why I enjoy...
2009-01-26
1,613 reads
SQLSaturday #10 was held January 24, 2008 in Tampa at the Kforce Building. Attendance was about 175, down slightly from...
2009-01-25
1,301 reads
Another story from a previous job. I joined the company in August, in October they started prepping for Halloween - it...
2009-01-22
926 reads
We had our first oPASS meeting of the year last week with about 18 attending. Jonathan Kehayias was our featured...
2009-01-21
680 reads
Continuing the conversation I began in Part 1 & Part 2, today I want to ruminate some more on networking. I've...
2009-01-20
1,130 reads
A while back I mentioned that Radio Shack had an interesting promotion on a netbook and debated at what price...
2009-01-20
1,298 reads
Lately I've been thinking (again) about books and book reviews, mostly because I'm looking to see if it makes sense...
2009-01-18
910 reads
We all have those things that happen at work that somehow turn into something other than expected, and sometimes in...
2009-01-15
646 reads
Apress sent me a free review copy, so I took a quick look through it at lunch. I've used full...
2009-01-15
600 reads
It's been about two weeks since I posted PASS Update #1, so time for another update on my activities as...
2009-01-14
710 reads
Do you know if your SQL Server is really running at its best? To...
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...
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