Just a week to SQL Saturday in Pensacola
Next week is SQL Saturday #491 in Pensacola. I’ll be there, along with a number of other great speakers. It’s...
2016-05-26
796 reads
Next week is SQL Saturday #491 in Pensacola. I’ll be there, along with a number of other great speakers. It’s...
2016-05-26
796 reads
2016-05-26
1,525 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-05-25
798 reads
2016-05-25
1,373 reads
I got an email today from PASS, noting that credentials were changing from username to email. That’s fine. I don’t...
2016-05-24
549 reads
As the title says, the clustered index doesn't have to the primary key and vice versa.
2016-05-24
1,460 reads
2016-05-24
1,152 reads
2016-05-23
1,430 reads
This week Steve Jones looks at the formal way in which you might verify changes to your system. Do you have a process?
2016-05-20
235 reads
Branching code creates complexity to development and should be undertaken with caution.
2016-05-19
94 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