2016-09-29
63 reads
2016-09-29
63 reads
Monitoring your systems is critical to ensuring security and stability. Steve Jones shares a few thoughts on where monitoring might go with more computer assistance in the future.
2016-09-28
85 reads
Microsoft has dramatically changed the way they develop software, in a very public way, as Steve Jones notes.
2016-09-27
104 reads
Why would I want the boss to be able to see so easily every little bad thing that happens on my servers? Grant Fritchey offers a few reasons...
2016-09-26
125 reads
The world of machine learning and artificial intelligence are growing. Steve Jones notes this means we need to decide if we can trust the black boxes.
2016-09-26
63 reads
This Friday Steve Jones looks to find out what things help people learn and build skills more readily.
2016-09-23
80 reads
A competition among software bots may foretell a vision of the future for software developers.
2016-09-22
84 reads
This week Steve Jones notes that backups aren't the most important thing for your data. Restores are.
2016-09-19
99 reads
Data Science is a hot area and one to which quite a few people would like to move. Steve Jones has some thoughts on trying to get certified in this area.
2016-09-15
164 reads
2016-09-14
106 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