PASS Summit 2009 Day 1 Keynote Live Blog
(Note: Updates are listed newest first)
10:15 AM – And we're done! The rooms empty out to grab spots at the first...
2009-11-03
751 reads
(Note: Updates are listed newest first)
10:15 AM – And we're done! The rooms empty out to grab spots at the first...
2009-11-03
751 reads
Set up and and ready to go. Wayne Snyder is going to open the ceremonies and the key note will...
2009-11-03
384 reads
Bob Muglia opened with January 13, 1988, when the Microsoft Sybase Ashton-Tate SQL Server program was launched. Apparently Bill Gates...
2009-11-03
380 reads
Now up is Ted Kummert of Microsoft.
He’s giving us a good overview of some of the technology coming up. He’s...
2009-11-03
551 reads
One of the most common problems facing a DBA or developer in troubleshooting performance is identifying what processes, and by...
2009-11-03
437 reads
Hey, just caught wind of some timely stuff going on at PASS. Had my trusty 'Google alert' email me, set...
2009-11-03
818 reads
Ok, so I can’t promise you’ll be smooth by the end of this entry, but I can promise you’ll be...
2009-11-03
240 reads
It’s very exciting to be involved with the SQL Saturday here in South Florida. There are already so many great...
2009-11-03
337 reads
Day one for me began with a leisurely breakfast at Top Pot donuts with Jack Corbett, Andy Warren, and Don...
2009-11-03
612 reads
Day two of the summit found me in the keynote, an interesting but much too long (2 hours) for comfort. ...
2009-11-03
666 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