Kindle – Encouraging Plagiarism?
I ran across a story about the new Kindle blog publishing features. It was called “How the Kindle Now Lets...
2009-06-17
702 reads
I ran across a story about the new Kindle blog publishing features. It was called “How the Kindle Now Lets...
2009-06-17
702 reads
Yesterday I posted Part 1 containing five ideas for those looking for work. Today I’m going to focus on what...
2009-06-16
998 reads
Having been married to Microsoft for most of my professional career doesn’t mean I drink the Kool-Aid.
I have had...
2009-06-16
773 reads
I added a new blog to my reader today: The Client Revolution.
I heard about this from @NeilDavidson, and he mentioned...
2009-06-16
663 reads
The DevTeach/SQLTeach keynote was from Tim Huckaby, founder of InterKnowlogy.
DevTeach/SQLTeach was held this past June 8-12 in Vancouver, BC at...
2009-06-16
735 reads
I wasn’t able to attend this event, but did participate as a sponsor and I had this follow up message...
2009-06-16
650 reads
I was out Friday night with family at Parker Days, the festival downtown in my little city and checked email...
2009-06-16
707 reads
I was recently asked for advice about seeking a job, a request we all get from time to time. In...
2009-06-15
726 reads
Last Friday I got the official notice that I've been selected to present a community session at the 2009 PASS...
2009-06-15
470 reads
A week ago I spoke at the Pensacola SQLSaturday event to about 30 people. A few drifted in late, so...
2009-06-15
918 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
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
Comments posted to this topic are about the item Why Your SQL Permissions Disappeared
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