What is code coverage for?
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
38 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of...
2016-04-11
38 reads
Code coverage gives you an indication of how well tested a particular area is. It is not a measure of code quality and having a statement covered by a...
2016-04-11
2 reads
Open Source code coverage tool for T-SQL, SQL Server 2008+
What is code coverage?
Code coverage is a way to see how...
2016-04-13 (first published: 2016-04-08)
4,299 reads
Open Source code coverage tool for T-SQL, SQL Server 2008+
What is code coverage? Code coverage is a way to see...
2016-04-08
42 reads
Open Source code coverage tool for T-SQL, SQL Server 2008+
What is code coverage? Code coverage is a way to see...
2016-04-08
41 reads
Open Source code coverage tool for T-SQL, SQL Server 2008+
What is code coverage? Code coverage is a way to see how many statements in your database code have been...
2016-04-08
5 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy...
2016-03-03
765 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy...
2016-03-03
33 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy...
2016-03-03
32 reads
Composite projects in SSDT are a really useful way to logically split databases up while still being able to deploy into a database as a whole. Even if you...
2016-03-03
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