Reblog: November 2 to November 8
Welcome to this Friday’s reblog summary post. The aim of these posts is to bring some old posts that newer...
2012-11-09
508 reads
Welcome to this Friday’s reblog summary post. The aim of these posts is to bring some old posts that newer...
2012-11-09
508 reads
Thought I would put up a quick post to summarize day one of regular sessions at the PASS Summit. It...
2012-11-08
625 reads
Are you in Seattle yet? Still working on getting here? Tomorrow is the first day of regular sessions at this...
2012-11-06
708 reads
Throughout the week, I like to tweet links to the things that I’ve been reading. Since they all come out through out...
2012-11-05
606 reads
Seriously, the clock is ticking and you should be in your car or a plane for PASS Summit by now. ...
2012-11-05
674 reads
The PASS Summit is coming up next week and that means that as the sun goes down, a number of...
2012-11-02
584 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-01 (first published: 2012-10-29)
3,295 reads
Obviously the title of this post is an exercise in bad grammar, but it’s a little catchy. Well, maybe not,...
2012-10-31
1,477 reads
Happy Halloween! Are you looking for the perfect treat for your SQL Server costume?
Well, if so – I have the treat...
2012-10-31
5 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-10-30
1,501 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