SQL PASS Summit 2009 – Day 1
Day one for me began with a leisurely breakfast at Top Pot donuts with Jack Corbett, Andy Warren, and Don...
2009-11-03
597 reads
Day one for me began with a leisurely breakfast at Top Pot donuts with Jack Corbett, Andy Warren, and Don...
2009-11-03
597 reads
For me, today was the start of a six-day SQL Server adventure at the PASS Summit in Seattle. The day...
2009-11-01
705 reads
I have a sad story to tell you. Sit down and grab a tissue.
It was 10pm on a cool night...
2009-10-29
696 reads
In the first installment of this discussion, I talked about the challenges facing database professionals and others with respect to...
2009-10-28
1,848 reads
Anyone who has an Internet connection has kept up with PASS-related news during the past couple of weeks is keenly...
2009-10-22
773 reads
If you meet me at PASS, you can win prizes!
OK, so maybe there’s a little more to it than that. ...
2009-10-21
710 reads
Last week, I had lunch with an old friend who is, by his own definition, technologically ignorant. While we caught...
2009-10-19
814 reads
Earlier this week, I delivered a presentation entitled “Deploying Report Builder 2.0 for Self-Service Reporting” as part of the new...
2009-10-14
658 reads
If you are a blogger and you post product reviews on your blog, you may have to answer to the...
2009-10-07
552 reads
If you are in the Dallas/Ft. Worth area and are interested in SQL Server developer training, there is an opportunity...
2009-10-02
636 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