Daylight Saving Time and SQL Server
If you're in the United States, chances are you've already heard about Daylight Saving Time (DST) occurring 3 weeks early...
2007-02-13
2,658 reads
If you're in the United States, chances are you've already heard about Daylight Saving Time (DST) occurring 3 weeks early...
2007-02-13
2,658 reads
I have put the Midlands PASS site online temporarily at Truth Solutions. You can reach it here:
http://www.truthsolutions.com/MidlandsPASS/
The slides from Paul...
2007-02-12
1,611 reads
We are postponing
due to the weather. Training Concepts has shut down for the day due to the wintry
mix....
2007-02-01
1,284 reads
I meant to blog on this last month but work has been just a touch short of insane. I like...
2007-01-31
1,499 reads
Our next meeting will be on
Thursday, February 1, 2007, at 6:30 PM.
It'll be at the Training Concepts facility once...
2007-01-30
1,513 reads
I've been looking at getting an MP3 player for a while now because I want to make better use of...
2007-01-27
1,539 reads
Our next meeting
will be on Thursday, February 1, 2007, at
6:30 PM. It'll be at the Training Concepts facility once...
2007-01-26
1,403 reads
I recently had the opportunity to review NGS Software's updated Typhon III general vulnerability scanner. I had previously reviewed it...
2007-01-25
1,729 reads
Sean McCown writes in the latest Database Underground about how DBAs should try and make things better for users of...
2007-01-09
1,534 reads
This is from Michael Kaplan's blog over at MDSN. He was writing about the power outage that affected the Northwest...
2007-01-07
1,357 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