Great Read on the Difficulty of Computer Security
The SANS Internet Storm Center has a great handler post about working at the Abuse department for an ISP:
Securing a...
2008-08-04
793 reads
The SANS Internet Storm Center has a great handler post about working at the Abuse department for an ISP:
Securing a...
2008-08-04
793 reads
In the current issue of Redmond magazine there's an interesting story in the Never Again column. It's titled:
Listen to the...
2008-08-02
921 reads
The network scanner Nmap has a new version out, 4.68. The GUI interface (Zenmap) which comes with the Windows installer version...
2008-08-01
572 reads
The Midlands PASS chapter is approaching two years old. We've had some great speakers from the outside like MVPs Brian...
2008-07-31
1,693 reads
It looks like Microsoft is working with Prometric to put out a different way of testing for certification. Basically, it's...
2008-07-31
1,349 reads
Speaker: Darren Herbold
Midlands PASS Chapter - August 7, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday, August 7,...
2008-07-31
1,826 reads
As a follow-up to yesterday's post, Part III of the SQL Server panel interview has been posted on-line. A name I...
2008-07-30
1,716 reads
I was asked by Odin Jobs to participate in an email interview on SQL Server. Joining me on the panel...
2008-07-29
2,006 reads
Application roles often interesting possibilities in theory. In practice? Brian explores how they work and some of the pros/cons you should consider before selecting them for use in your applications.
2008-07-25 (first published: 2003-08-27)
45,393 reads
Speaker: Darren Herbold
Midlands PASS Chapter - August 7, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday, August 7,...
2008-07-24
1,581 reads
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...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
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