Splitting up the Mission of PASS
Following up on Should There Be A Successor to PASS? I have a couple more thoughts. One of the many complaints about PASS over the years was about perceived value....
2020-12-28
9 reads
Following up on Should There Be A Successor to PASS? I have a couple more thoughts. One of the many complaints about PASS over the years was about perceived value....
2020-12-28
9 reads
This is a very brief post to inform you that PASS has died, killed by the for-profit company behind it. That’s sad beyond words, but we, as a community,...
2020-12-28 (first published: 2020-12-18)
1,000 reads
This article shows a problem with one of my favorite tools - Kerberos Configuration Manager. This tool provides a lot of power in resolving SPN related issues.
The post How...
2020-12-26
9 reads
This article shows a problem with one of my favorite tools - Kerberos Configuration Manager. This tool provides a lot of power in resolving SPN related issues.
The post How...
2020-12-26
7 reads
This article shows a problem with one of my favorite tools - Kerberos Configuration Manager. This tool provides a lot of power in resolving SPN related issues.
The post How...
2020-12-26
275 reads
This article shows a problem with one of my favorite tools - Kerberos Configuration Manager. This tool provides a lot of power in resolving SPN related issues.
The post How...
2020-12-26
7,765 reads
PASS was a big influence on a lot of us and did a lot of good, if never quite as much good as many of us wished. I wish...
2020-12-26
119 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2020-12-25
20 reads
Christmas is this week so not a technical post for this week. Just a simple post wishing you and your family as many blessing as possible (especially in the...
2020-12-25
25 reads
Christmas is this week so not a technical post for this week. Just a simple post wishing you and your family as many blessing as possible (especially in the...
2020-12-25
8 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