2016-08-04
215 reads
2016-08-04
215 reads
It's possible to change a software development team and dramatically improve things. Steve Jones highlights an example from Redgate Software.
2016-08-02
89 reads
2016-08-01
64 reads
Passwords are a problem, especially when we're in a hurry. What should we do?
2016-08-01
83 reads
This Friday Steve Jones talks SQL Saturdays and asks how far you've traveled to attend one.
2016-07-29
90 reads
Gathering too much data isn't always helpful, and doesn't necessarily help you make better decisions. However, that's up to you to decide how much is too much.
2016-07-28
70 reads
Today Steve Jones notes that the ability to search if invaluable as the amount of information, or even objects, we deal with grows.
2016-07-27
88 reads
Releasing software is stressful, and as Steve Jones notes today, can cause bankruptcy if you don't have a solid process.
2016-07-26
86 reads
2016-07-25
71 reads
Today Steve Jones wonders why we don't unit test more, especially for databases.
2016-07-25
116 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