Degree Apprenticeships
Training more people on the job, while still allowing them to continue their education is something Steve thinks would help more people get started in technology.
2023-10-30
107 reads
Training more people on the job, while still allowing them to continue their education is something Steve thinks would help more people get started in technology.
2023-10-30
107 reads
One piece of advice for engineers is to be valuable, but not critical. It's a mistake Steve made early in his career, but he hopes you can do better.
2023-10-27
965 reads
The way we view our jobs might change how we do them. Steve has some advice on how to think about the work you do.
2023-09-27
97 reads
Many people are worried for their future career prospects with the growth of Artificial Intelligence (AI) in many situations. Steve doesn't think that AI is going to take over the world, but it might affect your future opportunities.
2023-09-25
145 reads
Steve notes some advice from someone that he found useful and helpful to become a better person in life.
2023-09-15
193 reads
Steve asks about your team at work today. What you like, what you need, even what you want to see in those with whom you work.
2023-09-08
448 reads
Steve takes a moment to think ahead to the PASS Data Community Summit 2023 and what he's looking forward to at the event.
2023-09-01
106 reads
This was a provocative title: 6 ITOps Skills That Will Never Be Automated. In a time when AI use is growing quickly and many people fear for their jobs, it's nice to see someone writing about areas that AI will struggle to handle. Ironically, lots of these articles are written by writers without much technical […]
2023-08-30
222 reads
Conferences have been a part of Steve's career for a long time. He talks about how he'd taken advantage of the opportunities he's had.
2023-08-18
71 reads
Time has brought clarity for changes which could and should have been provided by its instigators. We compare a change where clarity was sought to those that were chaotic and the approaches that were taken at their two poles.
2023-08-16
1,479 reads
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
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