Learning a New Development Platform
This past week at work we have been having some in-depth training. The interesting thing is it hasn't been SQL...
2009-06-18
1,334 reads
This past week at work we have been having some in-depth training. The interesting thing is it hasn't been SQL...
2009-06-18
1,334 reads
Going through one’s father’s belongings after his death is
always a poignant, bitter-sweet experience. I was going through his most
precious books...
2009-06-18
1,988 reads
Checkpoints are a great tool in SSIS that many developers go years without even experimenting with. I hope to enlighten...
2009-06-18
13,026 reads
What’s the cost of e-books? It’s an interesting question that I have always wondered. I found this account of the...
2009-06-18
725 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-06-18
654 reads
Part 1 discussed ways to find opportunities, Part 2 was about how to get more interviews, and today we’ll cover...
2009-06-17
1,003 reads
Yes, ALbanian SQL Server User Group will start soon with first meeting and registering the new users. So we will...
2009-06-17
503 reads
I am on my way in setting up a Pass chapter on our tiny Caribbean island. I had no clue...
2009-06-17
601 reads
For those in or around the Dallas area tomorrow (Thursday) evening, I'll be speaking at the North Texas SQL Server...
2009-06-17
789 reads
Co-worker and fellow DBA,, John O'Shea developed a Powershell script to create Red Gate SQL Compare snapshot files. Check out...
2009-06-17
1,064 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