Testing Service Pack 3
Who is responsible for Service Pack testing? Ultimately it's Microsoft, but Steve Jones reminds us we make a difference as well.
2008-11-05
75 reads
Who is responsible for Service Pack testing? Ultimately it's Microsoft, but Steve Jones reminds us we make a difference as well.
2008-11-05
75 reads
Who is responsible for Service Pack testing? Ultimately it's Microsoft, but Steve Jones reminds us we make a difference as well.
2008-11-05
83 reads
With Election Day in the US, Steve Jones talks about how you can make a difference. This editorial was originally published on Nov 4, 2008. It is being republished as Steve is out of town.
2008-11-04
70 reads
With a large election year in the US (President + all the other races), I've been more interested than in some...
2008-11-04
389 reads
Steve Jones talks about starting your own business and some of the challenges and advantages.
2008-11-04
162 reads
Steve Jones talks about starting your own business and some of the challenges and advantages.
2008-11-04
159 reads
Steve Jones talks about starting your own business and some of the challenges and advantages.
2008-11-04
173 reads
2008-11-04
3,434 reads
Steve Jones comments on a few pieces of interesting SQL Server news this week, including Service Pack 3.
2008-11-03
333 reads
2008-11-03
73 reads
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
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...
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