PASS Summit - David DeWitt Keynote
Microsoft sent Dr. David DeWitt to do the last keynote of the PASS Summit. He's a technical fellow in the...
2009-11-05
2,581 reads
Microsoft sent Dr. David DeWitt to do the last keynote of the PASS Summit. He's a technical fellow in the...
2009-11-05
2,581 reads
Note might be sparse here as it's not a great keynote. There's a lack of excitement, and enthusiasm from the...
2009-11-05
1,083 reads
Bill, the Vice President of Marketing, opened the day with a few remarks about how to keep up with PASS. ...
2009-11-05
1,645 reads
Mary-Jo Foley recently posted about some announcements about SQL Server 2008 R2 out of the PASS Summit. There will be...
2009-11-05
1,029 reads
The second day of the full PASS Summit was packed with sessions. If fact, it was hard to select from...
2009-11-05
436 reads
The day started off with the Quest Software breakfast presentation, to which I arrived late to find a standing-room-only crowd. ...
2009-11-04
621 reads
Up at 5am today, worked for a while, then down to breakfast at 6am with Brent, Colin, Denny (and wife!),...
2009-11-04
415 reads
Today I was just thinking about to know what is the difference between sql server vs.. other DBMS/RDBMS. so thought...
2009-11-04
1,981 reads
Today I was just thinking about to know what is the difference between sql server vs.. other DBMS/RDBMS. so thought...
2009-11-04
1,402 reads
More demos using Analysis Services from R2. They’re showing how you can refresh data & reports without having to write a...
2009-11-04
560 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