Pensacola in June–SQL Saturday #491
One June 5, I’ll be back in Pensacola, FL for SQL Saturday #491. It’s been a few years since there...
2016-05-05
518 reads
One June 5, I’ll be back in Pensacola, FL for SQL Saturday #491. It’s been a few years since there...
2016-05-05
518 reads
It seems that often we promote the best technical people into managerial positions, but is that a good idea? Steve Jones notes that a few people think this is a bad idea and there ought to be a technical career path for IT workers.
2016-05-05 (first published: 2012-05-01)
291 reads
2016-05-05
1,348 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-05-04 (first published: 2016-04-22)
25,070 reads
2016-05-04
1,753 reads
2016-05-03
1,512 reads
This week Steve Jones recommends installing Cumulative Updates. If you can test them.
2016-05-02
90 reads
2016-05-02
1,456 reads
As I write more code, especially database code, and I collaborate with others (or myself), I find that I have...
2016-04-29 (first published: 2016-04-18)
2,341 reads
2016-04-29
1,353 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