ACM Queue Article about One Laptop Per Child
If you happen to read ACM Queue there is a great article in the Nov/Dec 2007 issue called 'A Conversation...
2008-01-07
280 reads
If you happen to read ACM Queue there is a great article in the Nov/Dec 2007 issue called 'A Conversation...
2008-01-07
280 reads
I finally got set up to access the MVP newsgroup server today while I was working on some other projects....
2008-01-06
789 reads
A friend sent me a link to www.sqlcommunity.com and I think I'd list it. So far doesn't seem impressive, but...
2008-01-06
513 reads
Just a reminder to anyone in the Tampa area, or willing to travel, that the call for speakers for the...
2008-01-03
237 reads
Back in 2000 I began writing for swynk.com in hopes of learning more about SQL Server and beginning to make...
2008-01-03
6,197 reads
After a couple of months of discussion, End to End Training has scheduled me to teach a two day beginning...
2008-01-03
471 reads
One of the things I took from my overall performance last year is I need to get better at time...
2008-01-03
641 reads
Steve finally got the bugs worked out of the recent blog software upgrade and RSS should be available again. Note...
2008-01-03
455 reads
Just saw that Bayer posted a note confirming that he is a 2008 MVP. I met Bayer a couple years...
2008-01-02
184 reads
Google has - and continues - to do some amazing things. It's easy to be awed by their products and their infrastructure,...
2008-01-01
459 reads
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...
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
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
Comments posted to this topic are about the item I Can't Make You Learn
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