SSMS "Connect to Database Engine" Prompt Behavior When Dragging And Dropping Files
A minor annoyance of mine for a long time has been how SSMS will sometimes prompt you to connect to...
2009-09-17
380 reads
A minor annoyance of mine for a long time has been how SSMS will sometimes prompt you to connect to...
2009-09-17
380 reads
A colleague pointed out a site that collects a lot of job posting data and exposes graphs - so I've taken...
2009-09-17
4,230 reads
Business Intelligence Developers Studio (aka BIDS) for Microsoft SQL Server 2005 Reporting Services makes creating engaging and dynamic reports nearly...
2009-09-17
1,226 reads
Bet you’re ready to disagree, right? I’ve had this on my list to write about for a while. One trend...
2009-09-17
1,355 reads
I noticed that the keys on my laptop were pretty dirty the other day. The heavily used ones have a...
2009-09-17
800 reads
One of the cool features of the SQL Server PowerShell snapins is the the ability to browse SQL Server as...
2009-09-16
435 reads
Business conventions are important because they demonstrate how many people a company can operate without.
Since I got to so many,...
2009-09-16
654 reads
Yesterday we were greeted to a ComputerWorld column talking about how Apple had betrayed the Enterprise's trust by having a...
2009-09-16
742 reads
There are about 45 paragraphs that I hope to progressively and quickly translate for the French version of the Disaster...
2009-09-16
1,232 reads
It’s been a busy month of September, and I’ve been getting feedback from the busy world of SQL Server MVP’s...
2009-09-16
1,708 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...
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...
Comments posted to this topic are about the item BIT_COUNT II
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