The SQLServerCentral Outage
A lot of people have asked what happened over the Memorial Day weekend as SQLServerCentral was down. All I can...
2009-05-26
1,585 reads
A lot of people have asked what happened over the Memorial Day weekend as SQLServerCentral was down. All I can...
2009-05-26
1,585 reads
I had the video card go bad in my new desktop, so I spent a few minutes rolling back to...
2009-05-26
668 reads
This week I'm in Brno, Czech Republic leading an App Compat seminar for Microsoft clients here, and one of the...
2009-05-26
488 reads
A great Hyper-V blog here at Accentient Blog.
I was searching around for information on setting up Hyper-V and I...
2009-05-26
1,317 reads
Wes is a friend acquiring via networking and community involvement - another success story! He's based in Tampa and has been...
2009-05-25
562 reads
I've been using Snarfer for a while now, preferring an offline reader so that I use a few spare moments...
2009-05-25
739 reads
You have a few options for protecting your SQL Server data at rest. So far I haven't seen anything thing...
2009-05-25
3,512 reads
I’m giving my talk on The Modern Resume – Building Your Brand a few more times this year and I’ve got...
2009-05-25
992 reads
Today in the United States we celebrate Memorial Day, the day we remember American casualties of any military action. Though...
2009-05-24
564 reads
I installed Hyper-V onto a new machine as a role for the base Windows 2008 server role. It required a...
2009-05-22
1,031 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