TSQL Tuesday – But I was Late
I was late to the game having discovered the Blog Post the day after entries were allowed. Despite that, I...
2010-01-14
844 reads
I was late to the game having discovered the Blog Post the day after entries were allowed. Despite that, I...
2010-01-14
844 reads
In Part I, I discussed a couple of scripts that could be used to help discover some vital information about...
2010-01-13
648 reads
This past week I had the opportunity to have lunch with a vendor at his clients’ site. As a part...
2010-01-10
519 reads
Like a lemming in the DBA community, I too am going to post my 2010 goals. I am looking to...
2010-01-08
466 reads
Steve Jones at SqlServerCentral.com has created a Blog for me over there at SqlServerCentral.com. I will be syndicated there and...
2010-01-07
606 reads
As a part of my DB documentation process for a large database, I needed a method to quickly show me...
2010-01-05
718 reads
I have been pondering over my local PASS chapter and participation. And more specifically about why I should participate, and...
2010-01-04
996 reads
2009-12-21
5,103 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