2018-11-20
60 reads
2018-11-20
60 reads
2018-11-19
78 reads
This year, PASS celebrated the 20th PASS Summit. As it has been many times, this year’s Summit was held in Seattle. PASS Summit has visited other locations such as Orlando and Charlotte, but, at least to me, it feels like home when it’s hosted in Seattle. For those of us who have participated for many […]
2018-11-19
39 reads
2018-11-16
89 reads
2018-11-15
706 reads
Some controversy over a new Code of Conduct has risen. Steve thinks we just need treat each other well.
2018-11-14
190 reads
2018-11-13
116 reads
At the PASS Summit, there are a few announcements of changes to the data platform.
2018-11-12
64 reads
2018-11-12
147 reads
2018-11-07
85 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers