2020-05-18
134 reads
2020-05-18
134 reads
I’m constantly hearing stories about terrible managers, and, of course, I’ve experienced quite a few myself. In fact, I can’t come up with many nice things to say about most managers when I look back over my career. (Luckily, my manager at Redgate is wonderful!) Early in my tech career, I was working at a […]
2020-05-16
196 reads
What will you do about vacation during the pandemic? Steve gives his thoughts.
2020-05-15
124 reads
Steve notes we all need to learn to communicate and share information better, especially while we are remote.
2020-05-14
113 reads
Many of us have used PowerPoint, which has grown smarter through the use of Machine Learning.
2020-05-13
210 reads
Many more companies that you have heard about have been attacked by ransomware. Steve suggests you get prepared before this happens to you.
2020-05-12
210 reads
2020-05-11
225 reads
2020-05-09
146 reads
2020-05-08
213 reads
2020-05-07
111 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Is Fabric a Reliable Service...
hi , a new user wants to be able to add sql agent jobs...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers