2017-01-30
68 reads
2017-01-30
68 reads
There are some changes to memory limits in SQL Server 2016 SP1 Standard Edition.
2017-01-26
1,638 reads
When things go wrong, how do you handle them? Steve Jones comments on crisis management using a great example from Amazon.
2017-01-25
197 reads
Being unemployed is difficult. Here's something I learned to help me through it.
2017-01-24
276 reads
2017-01-23
108 reads
2017-01-23
94 reads
Sometimes the hardware or software we use prevents upgrades, which isn't necessarily good for any of us.
2017-01-20
76 reads
2017-01-18
178 reads
Many of our security issues come down to not patching software when there are updates available.
2017-01-17
110 reads
This week Steve Jones looks at hardware and the ways in which you might assemble a set of computers for building software.
2017-01-16
52 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