Logging Server Reboots - What the Heck MS?
Maybe someone at MS can explain this; they have that nice dialog that comes up after a reboot where you...
2007-11-21
1,398 reads
Maybe someone at MS can explain this; they have that nice dialog that comes up after a reboot where you...
2007-11-21
1,398 reads
I wrote up some more notes (in addition to what's available here on the blog) to try to raise the...
2007-11-21
1,372 reads
I had dinner with Wes Dumey and Pam Shaw from Tampa last night to share some lessons learned and hear...
2007-11-20
1,380 reads
I've got a request in to PASS asking them to release 2 of the many sessions that were presented at...
2007-11-19
1,331 reads
Visit the blog of Joe Healy, my favorite MS Developer Evangelist to see some pics from SQLSaturday. Joe is amazingly...
2007-11-15
1,344 reads
You may not think of DDJ for database info and I'll admit that what they do cover is often a...
2007-11-15
1,415 reads
A short article but interesting I think, with some good comments already. I think in general triggers are under used,...
2007-11-13
579 reads
We were lucky enough to have Joe come to Orlando to speak at SQLSaturday and we also talked him into...
2007-11-12
800 reads
I'm just finishing up sending out thank you emails to the volunteers, speakers, and sponsors that helped make our first...
2007-11-12
606 reads
One of the things I discuss in my Successful Technical Speaking class (it's a
free class, usually once a quarter)...
2007-11-12
606 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...
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...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
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