Training
I'm kind of stunned. I have asked 6 people to go to the PASS conference over the last 4 days...
2007-09-17
691 reads
I'm kind of stunned. I have asked 6 people to go to the PASS conference over the last 4 days...
2007-09-17
691 reads
Last week I taught 'Successful Technical Speaking' for the first time - it's a free four class I put together for...
2007-09-17
779 reads
I'm flying out tomorrow for the event and looking forward to it, nice break from the office/work routine, a chance...
2007-09-16
499 reads
So I got a final count of referrals from the PASS conference yesterday and it was 183, so thanks to...
2007-09-14
658 reads
Editorial coming next week, but so far this is amazing to me. Microsoft's stealth updates of their client update tool....
2007-09-14
612 reads
OK, here's one take. Not sure if it's any good, but it's a start.
No live editorials yet. I've been working...
2007-09-13
660 reads
I'm working on getting a small studio set up for some podcasting of the editorials. That means I put a...
2007-09-12
2,230 reads
You might call me a bean counter, but it's a fact that every manager needs to manage the distractions that...
2007-09-11
514 reads
Saw an plug for it from our sales rep yesterday, MD3000i. Starts at $7300 with just a couple drives, goes...
2007-09-11
496 reads
I have been on vacation the last week, which meant I spent the previous three weeks at work preparing to...
2007-09-10
608 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