A Flood of Books
I'm on a few publishers' lists as someone that reviews books, works with SQL Server, and in general might help...
2009-05-22
759 reads
I'm on a few publishers' lists as someone that reviews books, works with SQL Server, and in general might help...
2009-05-22
759 reads
The Making of the Atomic Bomb by Richard Rhodes ($14 at Amazon) was a book I picked up for travel,...
2009-05-21
679 reads
I was late with family issues, and so I missed the social time when I was expecting to do a...
2009-05-21
618 reads
As Brad McGehee mentioned recently: SQLTeach (a part of the larger DevTeach event) will be held in Vancouver, BC this...
2009-05-21
1,063 reads
My Dearest Mister André Pratte,
Regarding your article in the Globe and Mail, I was quite surprised to see you run...
2009-05-21
1,600 reads
I saw an interesting blog post from Andy Leonard (@AndyLeonard) recently on what he thought Twitter was. I'd started my...
2009-05-21
1,911 reads
I just finished up my third coaching call with Don Gabor (Part 1, Part 2, Part 3, Part 4) and...
2009-05-20
665 reads
I spent the last 4 days in Denver helping my company move in a new datacenter and while I was...
2009-05-20
577 reads
I got my MVP goodies the other day in the mail. My bag is upstairs, not yet used, but I...
2009-05-20
1,102 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-05-20
601 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