Visual Design for Safety
Good visual design matters, and Steve notes that his Tesla needed an update because their design didn't meet the specification.
2024-02-21
129 reads
Good visual design matters, and Steve notes that his Tesla needed an update because their design didn't meet the specification.
2024-02-21
129 reads
Today Steve discusses visualizations and how we would think about the information a client gets from them.
2023-05-24
193 reads
Learning to better display the information contained in our data is a skill. Steve has a few thoughts today on learning to improve this for himself.
2022-06-20
134 reads
Charts and graphs need a scale to be meaningful. When to include zero in your scale is a question that is more complicated than Steve expected.
2022-04-13
128 reads
Building reports and visualizations isn't as simple as we would like. Learning a bit about how to better design them is important.
2021-07-09
147 reads
I'm sure there are plenty of examples, but I've seen deceptive data visualizations far too often in mass media. I don't often watch the news, but at times I've been at the gym, saw a graph on a television, and been a little surprised. The issue that bothered me is similar to what's discussed in […]
2021-06-19
132 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
I have mentioned this several times over several years. Can someone please help me...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers