After Event Notes on SQLSaturday #8 in Orlando
By any measure the event was a success. We had a solid 275 attendees this year, up about 50 from last...
2008-10-25
1,495 reads
By any measure the event was a success. We had a solid 275 attendees this year, up about 50 from last...
2008-10-25
1,495 reads
In Good Ideas Take Time or How to Brainstorm - Part 1 I wrote about how I come up with ideas...
2008-10-23
1,598 reads
Occasionally I'm asked how I come up with ideas for my blog to maintain the just about one a day...
2008-10-22
684 reads
Obviously, right?
I managed to knock my Blackberry Curve off the bar and into a bowl of water in the sink....
2008-10-21
612 reads
Recently I posted about Managing My Todo List and I had a question via email about what notepad I was...
2008-10-20
794 reads
I posted Do You Understand Microsoft Licenses about a week ago, and today happened to run across a note about...
2008-10-20
534 reads
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
496 reads
I've just recently acquired a new laptop and my resolution is to install no software on it that I'm not...
2008-10-16
671 reads
I was teaching a private class recently that had both DBA's and network types in the room, one of the...
2008-10-16
813 reads
Back in May I wrote about signing up for FlyClear as a way to save time travelling and in doing so,...
2008-10-14
516 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