Looking Back - PASS Summit 2009 Day 1
I intended to blog daily while at the PASS Summit last week. At least that's what I told myself I...
2009-11-09
797 reads
I intended to blog daily while at the PASS Summit last week. At least that's what I told myself I...
2009-11-09
797 reads
I’m trying to pay more attention to things that cause me stress and how I deal with the stress. It’s...
2009-11-09
930 reads
Well if you attended PASS, you already know that I am changing jobs. I recently accepted a position with Pragmatic...
2009-11-09
673 reads
A few random thoughts:
I think many people did ok at the airport connecting for ride share via Twitter. By next...
2009-11-09
370 reads
I’ve already written four posts (1, 2, 3, 4) that discussed what I did at the Summit, including what I...
2009-11-09
417 reads
Reports that use an Analysis Services cube as a data source can often have performance problems during pre-execution. Before you...
2009-11-09
3,071 reads
I’ve never been to Las Vegas, and was looking forward to going for the first time this week for SQL...
2009-11-09
579 reads
Here is an updated version of my diagnostic information queries for SQL Server 2005. You can get the SQL Server...
2009-11-09
2,291 reads
SQLServerCentral.com is sponsoring a track at SQL Server Connections this Wednesday and Thursday, November 11th and 12th. If you are...
2009-11-09
362 reads
This is a temporary post that was not deleted. Please delete this manually. (e29f86d1-0b33-4a68-adcd-77248245d9b5 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2009-11-09
568 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