What is SSDT all about aka Why should I bother?
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to...
2016-01-05
62 reads
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to...
2016-01-05
62 reads
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to what it is as it is actually pretty big....
2016-01-05
2 reads
You sometimes want to do things like split a table into two or move a column into another table and...
2015-12-30
1,212 reads
You sometimes want to do things like split a table into two or move a column into another table and...
2015-12-30
206 reads
You sometimes want to do things like split a table into two or move a column into another table and...
2015-12-30
217 reads
You sometimes want to do things like split a table into two or move a column into another table and when you use SSDT or the compare / merge...
2015-12-30
1 reads
I love writing c# code using visual studio and resharper, it is a really nice experience and resharper does a...
2015-12-10
742 reads
I love writing c# code using visual studio and resharper, it is a really nice experience and resharper does a...
2015-12-10
35 reads
I love writing c# code using visual studio and resharper, it is a really nice experience and resharper does a...
2015-12-10
38 reads
I love writing c# code using visual studio and resharper, it is a really nice experience and resharper does a lot of boiler plate stuff and offers re-writes for...
2015-12-10
3 reads
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