2016-06-02
91 reads
2016-06-02
91 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-06-01
513 reads
2016-06-01
128 reads
2016-06-01
1,463 reads
The overloading of terms creates confusion, which means that communication is more difficult.
2016-05-31
93 reads
Recently I was looking to generate a quick workload against an instance. I wanted to add to the amount of...
2016-05-31
1,049 reads
A great developer is worth more than an average one, but how much more? Steve Jones has a few thoughts for you to think about.
2016-05-30 (first published: 2012-03-12)
597 reads
2016-05-30
1,429 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-05-27 (first published: 2016-05-19)
2,218 reads
2016-05-27
1,357 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