Data and Privacy
Users often have a certain expectation of privacy about their data in applications, and as software engineers, Steve Jones thinks we need to respect that.
2011-12-28
97 reads
Users often have a certain expectation of privacy about their data in applications, and as software engineers, Steve Jones thinks we need to respect that.
2011-12-28
97 reads
2011-12-28
1,985 reads
Making a backup of your Service Master Key (SMK) should be one of the first things that you do if...
2011-12-26
5,071 reads
2011-12-26
52 reads
2011-12-26
3,066 reads
This Friday before Christmas, Steve Jones has a fun poll. What would you like for Christmas? Any fun, interesting, fascinating tech toys?
2011-12-23
97 reads
2011-12-23
2,835 reads
I got a call from a friend recently that was looking for some query help. He was actually using Access,...
2011-12-22
1,296 reads
2011-12-22
2,499 reads
2011-12-21
2,201 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