Inbox Zero
An interesting idea in this video. I’d recommend you watch this if you have too much email. It's from the...
2008-12-05
431 reads
An interesting idea in this video. I’d recommend you watch this if you have too much email. It's from the...
2008-12-05
431 reads
One interesting thing about doing the podcasts and working from home is that I tend to shave a bit more...
2008-12-05
391 reads
2008-12-05
3,741 reads
There's a lot to it, but I see Tim Ford has a nice blog post on what it means to...
2008-12-04
489 reads
The upgrade treadmill might hit you in ways that you didn't expect.
2008-12-04
145 reads
I had an interesting question from someone that I respect and I’ve seen answering questions and writing a few articles...
2008-12-04
330 reads
Steve Jones asks about what you might change about yourself at work for this Friday's poll.
2008-12-04
71 reads
Steve Jones asks about what you might change about yourself at work for this Friday's poll.
2008-12-04
82 reads
Steve Jones asks about what you might change about yourself at work for this Friday's poll.
2008-12-04
64 reads
2008-12-04
3,216 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...
hi , a new user wants to be able to add sql agent jobs...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
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