Working on the Road
I spend a decent amount of time on the road, traveling to events. Last year I think I spent 50...
2016-03-15
566 reads
I spend a decent amount of time on the road, traveling to events. Last year I think I spent 50...
2016-03-15
566 reads
2016-03-15
1,569 reads
2016-03-14
1,358 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-03-11
684 reads
2016-03-11
133 reads
Steve Jones discusses the idea of building software better, and why that's a challenge for many of us.
2016-03-10
110 reads
Learn how you can find data in a string and extract it, no matter where it's located.
2016-03-10
41,462 reads
Slack has become a popular phenomenon in the technical world, especially for software developers. Should we join in?
2016-03-09
229 reads
2016-03-09
1,172 reads
I got a copy of some backup files recently and needed to restore them. However, I don’t have SQL Backup...
2016-03-08
1,349 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