SSDT-Dev-Pack
What is the SSDT Dev Pack It is basically a collection of tools that I find make developing in for...
2017-08-17
51 reads
What is the SSDT Dev Pack It is basically a collection of tools that I find make developing in for...
2017-08-17
51 reads
What is the SSDT Dev Pack It is basically a collection of tools that I find make developing in for SQL Server in SSDT better or easier. I will...
2017-08-17
4 reads
SQL Cover is a tool to measure code coverage in T-SQL. This will tell you how much of your database code your unit tests are exercising.
You can read more...
2017-08-17
13 reads
K-SSIS-ed - View any property or script in SSIS with a single click A cross platform re-imagined IDE and SSIS package viewer with one goal to allow a developer...
2017-08-17
DevOps isn't running SQL Server in a container and pushing code to it from Jenkins
When we talk about DevOps we...
2017-06-13
351 reads
DevOps isn’t running SQL Server in a container and pushing code to it from Jenkins
When we talk about DevOps we...
2017-06-13
37 reads
DevOps isn’t running SQL Server in a container and pushing code to it from Jenkins
When we talk about DevOps we...
2017-06-13
52 reads
DevOps isn’t running SQL Server in a container and pushing code to it from Jenkins
When we talk about DevOps we...
2017-06-13
21 reads
DevOps isn't running SQL Server in a container and pushing code to it from Jenkins
When we talk about DevOps we envision that we have the ability to check-in code,...
2017-06-13
3 reads
Every now and then I come across this error in SSDT, normally when trying to publish and the odd thing...
2017-06-12
2,959 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers