Thoughts on a PASSing Scene...
Well it certainly has been a busy and exciting week at PASS. I couldn't go this year, but through the...
2009-11-05
530 reads
Well it certainly has been a busy and exciting week at PASS. I couldn't go this year, but through the...
2009-11-05
530 reads
Dr. David DeWitt
“I’m not a doctor.” This is going to be good. “From 1 to 1000 MIPS” He’s doing great....
2009-11-05
689 reads
Started the day at 6:30 at Top Pot with a meeting about SQLSaturday over coffee and it really ended up...
2009-11-05
1,123 reads
Finally time for the sessions to begin after a day and a half in Seattle being overwhelmed by the people...
2009-11-05
734 reads
Patrick Ortiz from Dell, the platinum sponsor for the PASS Summit.
The goal will be to discuss the Dell Microsoft Practice,...
2009-11-05
515 reads
Wow, the bloggers table is empty today!
Nice intro! Good photo’s. I love the Summit!
Bill Graziano is introducing Day 3. He...
2009-11-05
1,321 reads
10:25 AM – And that's it for the week! Thanks for tuning in. Be sure to order the Summit DVDs. David's...
2009-11-05
443 reads
Day 2 of the Summit was extremely busy. I missed a breakfast on DMV’s that evidently was one of the...
2009-11-05
1,353 reads
During the opening keynote on Tuesday at the PASS Summit in Seattle, Microsoft’s Bob Muglia showed a demonstration of a...
2009-11-05
1,170 reads
Down on the docks in Seattle there's a shop of oddities and curiosities where one can find things like a...
2009-11-05
828 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