An important query to remember
This is based on a post with respect to where our focus and efforts should be that I wrote at...
2012-08-30
1,859 reads
This is based on a post with respect to where our focus and efforts should be that I wrote at...
2012-08-30
1,859 reads
It's been a while since I was in the day-to-day business of security patches. However, I still keep up with...
2012-08-24 (first published: 2012-08-21)
2,571 reads
This falls in line with a previous post about common sense in IT.
I was having lunch with a co-worker,...
2012-08-23
1,742 reads
I was watching a training video last night and the instructor made the statement we hear all the time:
"Test this...
2012-08-23 (first published: 2012-08-17)
4,591 reads
Auto-deploying AV definitions has become common place throughout the industry. However, this post from the SANS Internet Storm Center raises the...
2012-08-21
1,271 reads
If you are in or around the Charlotte, NC area, there is a PowerShell Saturday coming your way on September...
2012-08-15
1,345 reads
As I blogged about previously, tomorrow (Wednesday) I will be speaking for the PASS Professional Development virtual chapter. My talk will...
2012-08-14
1,130 reads
Around April this year, my men's accountability group was talking about a shared pain: income taxes. We were all worried...
2012-08-13
1,699 reads
This coming Wednesday I will be speaking for the PASS Professional Development virtual chapter. My talk will be on my...
2012-08-10
2,106 reads
A Facebook thread by one of my friends brought this one to mind. He was asking about what the current...
2012-08-09
1,945 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