The ROI of SQLSaturday for PASS & Decreased Event Funding
Returning to the post about Making SQSaturday Sustainable (see also a follow post about addressing concerns) it mentioned two topics...
2016-08-05 (first published: 2016-07-30)
1,470 reads
Returning to the post about Making SQSaturday Sustainable (see also a follow post about addressing concerns) it mentioned two topics...
2016-08-05 (first published: 2016-07-30)
1,470 reads
In a post titled The Future of the BA Community PASS announced that there would be no Business Analytics conference...
2016-07-30
820 reads
Last week PASS published some new guidance for SQLSaturday that sets a 600 mile rule (has since been updated, still...
2016-07-28
1,331 reads
Really late linking to it, Should I Stay or Go is about being more assertive about making the decision to...
2016-07-18
347 reads
Last week Karla Landrum announced that she will be leaving her position as Community Evangelist later this year after five...
2016-07-22 (first published: 2016-07-17)
1,626 reads
I’ve spent most of my career using VSS and TFS, mainly because that’s what was being used. Better any source...
2016-07-15
425 reads
Strangely enough its been a long time since I installed SQL in production. It’s almost always done by someone on...
2016-06-27
801 reads
Today PASS released a bunch of stuff for the upcoming election including the attributes of an “ideal candidate”. We put...
2016-06-22
415 reads
Can you guess what all of these people have in common?
Shawn WeisfeldJoe HealyBarry RalstonTrey JohnsonJon WinerWes DumeyDonnie ReynoldsKevin JacobsJoseph MemmoBrian...
2016-06-22
481 reads
We’ve advanced the closing date for the SQLSaturday Orlando call for speakers to July 17. That’s to give us time...
2016-06-22
392 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...
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