The Lost Hero – A review
With what looks to be five books planned in a new series by Rick Riordan, people have some good fantasy...
2011-01-25
545 reads
With what looks to be five books planned in a new series by Rick Riordan, people have some good fantasy...
2011-01-25
545 reads
Now it’s week three of voting for the upcoming SQLRally. This week, we are voting for the Enterprise Database Administration...
2011-01-25
592 reads
31 Days of SSIS
It’s Sunday afternoon and a good time to be putting up post twenty-three for the 31 Days...
2011-01-24
2,499 reads
It’s just a couple weeks away, on Super Bowl weekend. I can’t believe this is event #60, still in shock...
2011-01-24
819 reads
Corruption is so ugly it gets a lolworm instead of a lolcat.
Let’s make one thing clear from the start:
This Post...
2011-01-24
2,619 reads
Apress, as I expect you know, publish some really good SQL Server books. Some of which are on the MCM...
2011-01-24
625 reads
Think about your responsibilities at work for a minute. How many do you have? Can you even name them all?
As technical professionals,...
2011-01-24
699 reads
Microsoft SQL Server Licensing For Dummies..
Don’t let the above title fool you! Have you been confused on the Microsoft...
2011-01-24
89,570 reads
Two Fridays ago, Sean and I sat down for our weekly DBAs@Midnight webshow* as usual. Unusually, we were expecting an out-of-town...
2011-01-24
580 reads
[Commence whine-a-thon, thinly veiled as an introductory paragraph to a blog.]
As I knew it would, it is getting VERY difficult...
2011-01-24
488 reads
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
Comments posted to this topic are about the item BIT_COUNT II
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