What is SSDT? Part 3 - an API for me, an API for you, an API for everyone!
In the final part of this 3 part series on what SSDT actually is I am going to talk about...
2016-01-07
27 reads
In the final part of this 3 part series on what SSDT actually is I am going to talk about...
2016-01-07
27 reads
In the final part of this 3 part series on what SSDT actually is I am going to talk about the documented API. What I mean by documented is...
2016-01-07
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
1,162 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
26 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
37 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
11 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked about the first major category the development ide and...
2016-01-06
I often get asked the questions “What is SSDT" and I have wanted to have a single reference as to...
2016-01-11 (first published: 2016-01-05)
4,061 reads
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to...
2016-01-05
46 reads
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to...
2016-01-05
60 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