Monday at the 2009 PASS Community Summit
Monday at the 2009 PASS Community Summit, for the most part, was reserved for pre-conference sessions, Microsoft Customer Insider sessions,...
2009-11-04
851 reads
Monday at the 2009 PASS Community Summit, for the most part, was reserved for pre-conference sessions, Microsoft Customer Insider sessions,...
2009-11-04
851 reads
The 2010 PASS European Conference will be held in Neuss, Germany, April 21-23, 2010. Details are currently scarce on the...
2009-11-04
785 reads
Brent posted it first and I’m going to borrow his list to post here:
Best Business Intelligence Blog Post:
Winner: Chris Webb...
2009-11-04
776 reads
Today's keynote was from Tom Casey, called Bringing Greater agility to your business.
The number for the day is 20%. Fewer...
2009-11-04
892 reads
YAAAAAH!
The PASS Summit is pretty amazing. Yesterday I sat through the key notes from Microsoft. I was at the bloggers...
2009-11-04
565 reads
Opening remarks on day 2 of the Summit come from Rushabh Mehta, vice president of finance. Rushabh is giving us...
2009-11-04
949 reads
10:08 AM – And that's a wrap! See you tomorrow for day 3's keynote.
10:07 AM – Tom talking up the product roadmap.This...
2009-11-04
805 reads
Nice phot montage, included so many friends. I love PASS.
Rushab Mehta launching the Wednesday key note. Unfortunately, this is the...
2009-11-04
510 reads
Tom Casey of Microsoft on BI.
20% of people that are decision makers within organizations have the tools and information they...
2009-11-04
594 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