Tagged: The Desert Island Scenario
I was tagged by Scary DBA and recent MVP awardee Grant Fritchey with the latest viral question:
“So You’re On A...
2009-06-11
1,351 reads
I was tagged by Scary DBA and recent MVP awardee Grant Fritchey with the latest viral question:
“So You’re On A...
2009-06-11
1,351 reads
Early last week, my church suffered a lightning strike that did quite a bit of damage (relatively speaking) to computer and...
2009-06-11
834 reads
The point of this post is to cleary explain how the combination of the use of data definition language for your temporary...
2009-06-11
1,118 reads
While I was in Pensacola last weekend, I sat next to Andy Warren and I was telling him about getting...
2009-06-11
699 reads
This is part two of a series on writing a technical article. The advice might apply to non-technical articles, but...
2009-06-11
1,678 reads
I am at times an early adopter of technology. I like newer, better tools, but they have to be something...
2009-06-10
413 reads
I hope this isn't real, but I suspect it is.
If this image disappears, I promise not to sue.
2009-06-10
619 reads
I got my results from Karla Remail on the SQLSaturday talk over the weekend. I was surprised since typically other...
2009-06-10
346 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-06-09
338 reads
As background, I've never been a fan of multiple instances. It's a useful thing to have available and I use...
2009-06-09
394 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
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...
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