Process Tracking
It is not always possible to run a process on a set schedule. This article by Steve Jones looks at a technique for ensuring that your processes can run on whenever you need them to without any loss of data.
It is not always possible to run a process on a set schedule. This article by Steve Jones looks at a technique for ensuring that your processes can run on whenever you need them to without any loss of data.
The third part of Steve Jones's series on programming and manipulating strings in T-SQL dealing with REPLACE.
The fourth part of Steve Jones's series on programming and manipulating strings in T-SQL dealing with numeric conversions.
Day 1 is an absolute thrill at re:Invent! I normally dedicate this dynamic day...
With all the changes that have happened with VMware since the Broadcom acquisition I...
Each year around this time, companies enter the familiar ritual of budgeting. For many,...
Comments posted to this topic are about the item Adding a Lot of Seconds
Comments posted to this topic are about the item SQL Server Licensing is Simple,...
Comments posted to this topic are about the item Stairway to Azure SQL Hyperscale...
When does this code work and when does it fail?
DECLARE @BaseDate DATETIME = '1900-01-01'; SELECT DATEADD(SECOND, 2147483648, @BaseDate) AS [MaxIntSecondsAdded];See possible answers