2008-10-29
2,116 reads
2008-10-29
2,116 reads
Only a small one, but I appreciate every one I get. Not often that I get to leave the site...
2008-10-28
1,467 reads
Over the years Andy Warren, Brian Knight, and I have talked about PASS quite a bit. It hasn't always been...
2008-10-28
1,428 reads
2008-10-28
66 reads
2008-10-28
73 reads
2008-10-28
75 reads
2008-10-28
2,020 reads
How much do you trust companies with your data? Steve Jones finds a couple new web sites that offer great services, but is it worth the price?
2008-10-27
67 reads
2008-10-27
2,828 reads
I've always been a little bit of a strong DBA. I try to get along and work with people, being...
2008-10-26
1,591 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