One Year Blog Review
Just over a year ago I decided to start a blog and I put an item on my calendar to...
2008-07-06
357 reads
Just over a year ago I decided to start a blog and I put an item on my calendar to...
2008-07-06
357 reads
I try to limit the number of truly off topic posts I do, but today is a special day in...
2008-07-03
241 reads
The Midlands PASS Chapter hosts:
SQL Server MVP John Welch
July 17, 2008 at Training Concepts
The Midlands PASS chapter will hold a...
2008-07-03
725 reads
My friend Shawn Weiseld posted a note about the new INETA Champs Program. Looks interesting and is a nice step...
2008-07-02
350 reads
I saw an interesting note about how Intel is warning developers that they need to learn to program with multiple...
2008-07-02
643 reads
As expected, I forgot someone again in my MVP announcement. Last time I announced Kathi Kellenberger and Andy Leonard, forgetting...
2008-07-02
657 reads
I was fighting an error that was very rare to appear. I originally put a post on a MS forum
http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.sqlserver.replication&tid=57229124-0a5a-4ec3-9055-a06b7869b872&cat=&lang=&cr=&sloc=&p=1
The...
2008-07-02
4,449 reads
I commented in an earlier post about the challenges PASS has in trying to select a 100 or so speakers...
2008-07-01
295 reads
Today's the day that new MVPs are notified for Q3 and two longtime community members, Jeff Moden and Michael Coles,...
2008-07-01
710 reads
MS Word 2007 (and probably earlier versions) have the ability to do a basic document compare, useful if you're at...
2008-06-30
1,334 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