The Bad Data Shutdown
Not more hacking, but rather a data error in some cars is disturbing to Steve Jones.
2016-07-05
121 reads
Not more hacking, but rather a data error in some cars is disturbing to Steve Jones.
2016-07-05
121 reads
This week Steve Jones discusses artificial intelligence and one of the building blocks that will be needed: data.
2016-07-04
70 reads
2016-07-04
77 reads
Today we have a guest editorial as Steve is away on vacation. You often hear about how important it is to network. This is a story of how my network helped me get a new job.
2016-07-01
85 reads
Knowing what is happening on your systems, and being told when a system is not behaving normally is very important for administrators. Steve Jones has a few thoughts on monitoring today.
2016-06-30
246 reads
One of the things that can be an issue in database design is the data used to identify a user.
2016-06-29
113 reads
Data science is hot now, but work is being done to use the power of software to handle some of the grunt work with data analysis problems.
2016-06-28
87 reads
Are DevOps and security diametrically opposed? An interesting pieces says no, and Steve Jones comments.
2016-06-27
75 reads
On the First of June, SQL Server 2016 was officially released. While it is still early days to measure the full impact of the release, the one thing that is exceedingly clear is that this is a very successful software release. There have been very few complaints online beyond the standard heard during any upgrade: […]
2016-06-27
153 reads
An interesting question from Steve Jones today, asking what is your experience with designing databases.
2016-06-24
177 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