PASS Log Reader Winners Announced
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
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 was the first official day of the full (3-day) conference, with about 2,200 full conference attendees. Officially, PASS claims...
2009-11-04
417 reads
At the 2009 PASS Community Summit, I have gotten the opportunity to talk to many DBAs, and to find out...
2009-11-04
600 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
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
Up early again, started my day at the Convention Center for breakfast. Light breakfast, drinking water, never seem to drink...
2009-11-03
381 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
Started the day with a long walk, then off to Top Pot doughnuts for coffee with Don Gabor, Jack Corbett,...
2009-11-03
378 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
This week, I’m blogging and tweeting from the PASS Community Summit in Seattle, Washington. The week of the Summit is...
2009-11-03
795 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