Learn how to unit test SQL Server T-SQL code
A free email course on how to use tSQLt including the technical aspects of writing unit tests AND the art of writing repeatable, using unit tests for even the...
2017-09-05
2 reads
A free email course on how to use tSQLt including the technical aspects of writing unit tests AND the art of writing repeatable, using unit tests for even the...
2017-09-05
2 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn’t order) files....
2017-09-04
63 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn’t order) files....
2017-09-04
71 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn't order) files. I have been thinking about ssis quite a lot...
2017-09-04
5 reads
I saw on slack recently a question about how the ssis file enumeraror orders (or more specifically doesn't order) files....
2017-09-01
516 reads
K-SSIS-ed - View any property or script in SSIS with a single click A cross platform re-imagined IDE and SSIS package...
2017-08-17
79 reads
SQL Cover is a tool to measure code coverage in T-SQL. This will tell you how much of your database...
2017-08-17
59 reads
What is the SSDT Dev Pack It is basically a collection of tools that I find make developing in for...
2017-08-17
93 reads
K-SSIS-ed - View any property or script in SSIS with a single click A cross platform re-imagined IDE and SSIS package...
2017-08-17
54 reads
SQL Cover is a tool to measure code coverage in T-SQL. This will tell you how much of your database...
2017-08-17
56 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