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 what it is as it is actually pretty big....
2016-01-05
1 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
1 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,210 reads
You sometimes want to do things like split a table into two or move a column into another table and...
2015-12-30
205 reads
You sometimes want to do things like split a table into two or move a column into another table and...
2015-12-30
216 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
I love writing c# code using visual studio and resharper, it is a really nice experience and resharper does a...
2015-12-10
737 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
"where ISNULL(column, 'DontMatch') = 'Match'" - is kind of a bad thing to do in SQL as it means that any index...
2015-12-10
591 reads
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
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...
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
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