The Great Blog Move of 2013
For at least a year, I’ve been considering changing blog platforms. I set up my blog on TimMitchell.net using BlogEngine.NET...
2013-01-03
900 reads
For at least a year, I’ve been considering changing blog platforms. I set up my blog on TimMitchell.net using BlogEngine.NET...
2013-01-03
900 reads
I received notification that I have received the Microsoft MVP award for 2013, my fourth consecutive year to receive this...
2013-01-01
648 reads
I received notification that I have received the Microsoft MVP award for 2013, my fourth consecutive year to receive this...
2013-01-01
505 reads
I’m back home after a long week attending and presenting at the SQL PASS Summit in Seattle. This was the...
2012-11-11
717 reads
I’m back home after a long week attending and presenting at the SQL PASS Summit in Seattle. This was the...
2012-11-11
1,840 reads
I’m happy to announce that the book I’ve been working on for the past two years is complete and has...
2012-09-05
993 reads
I’m happy to announce that the book I’ve been working on for the past two years is complete and has...
2012-09-05
566 reads
This weekend I traveled three hours north to Oklahoma City to participate in SQL Saturday 125, the second annual event...
2012-08-27
393 reads
This weekend I traveled three hours north to Oklahoma City to participate in SQL Saturday 125, the second annual event...
2012-08-27
814 reads
It seems just yesterday that we were all in Seattle together, getting a crash course in what’s new and exciting...
2012-06-25
637 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