2011-11-24
27 reads
2011-11-24
27 reads
2011-11-24
2,907 reads
This editorial was originally published on Jan 17, 2007. It is being republished as Steve is on vacation. This one deals with data security.
2011-11-22
108 reads
This editorial was originally published on Feb 5, 2007 and is being re-run as Steve is on vacation. Is this the advice you'd give, or take, in a DR situation? Steve thinks it's not.
2011-11-21
115 reads
This week saw the release of RC2 of SQL Server 2012 and marks an important milestone towards the next release of SQL Server.
2011-11-21
96 reads
A career based poll this Friday has Steve Jones asking what your title is, or maybe what you think it should be given the work that you do.
2011-11-18
168 reads
Why are sites still being hit by SQL Injection on a large scale? Steve Jones talks about a recent large scale attack that affected over a million sites.
2011-11-17
584 reads
I try to speak and write about career things on a regular basis because I think they’re important topics for...
2011-11-17
1,658 reads
With the DBA in Space contest ending this week, Steve Jones has some thoughts on the contest, and what he'd do if he were to win.
2011-11-16
71 reads
Today Steve responds to a blog post from Microsoft that talks about the viability of placing our database files on network shares.
2011-11-15
155 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