A Fun Distraction
With the holiday season here, Steve Jones wonders what you'll do for fun away from work.
2016-12-16
113 reads
With the holiday season here, Steve Jones wonders what you'll do for fun away from work.
2016-12-16
113 reads
Today we have a guest editorial from Tim Mitchell that talks about security and communications with your customers. Ultimately it pays to be open and honest.
2016-12-15 (first published: 2013-12-17)
392 reads
2016-12-14
65 reads
SQL Server is growing as a platform and Steve Jones says that DBAs need to learn development skills.
2016-12-13 (first published: 2014-01-07)
618 reads
2016-12-12
89 reads
Is your IT department outdated? There's a prediction that they won't be around in five years. Steve Jones doesn't agree.
2016-12-12 (first published: 2013-06-13)
376 reads
Measuring the performance of systems isn't always just CPU, RAM, and Disk IO. Today Steve Jones looks at business based metrics.
2016-12-09
100 reads
It seems that everyone has a different idea on how to interview people. Today Steve Jones looks at the technique of having someone improve some code in real time.
2016-12-08
99 reads
I have seen three common responses to database messes. My favorite is nuclear.
2016-12-06
256 reads
2016-12-05
92 reads
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...
Setting page visibility and the active page are often overlooked last steps when publishing...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
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