Saving an Old Hammer
It's funny how life often gives us the buy or fix decision on some many things, and the hard part...
2009-03-11
589 reads
It's funny how life often gives us the buy or fix decision on some many things, and the hard part...
2009-03-11
589 reads
Fundamentally as I get older, I think more and more men are pigs. There is definitely something wrong with them,...
2009-03-11
2,004 reads
We’re on Twitter as @SQLServerCentrl. We couldn’t fit the whole name in there given the limitations of Twitter, but feel...
2009-03-11
366 reads
What do MVPs get to do and see at the MVP Summit? Well most of it is under NDA, so...
2009-03-11
479 reads
Database Snapshots Can Take a Long Time to Create
Believe it, it's true!! One of the big selling point for database...
2009-03-11
4,832 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-03-10
585 reads
This month there were 3 security bulletins released and 1 re-released:
Microsoft Security Bulletin Summary for March 2009
First, let's tackle the...
2009-03-10
1,211 reads
Kind of funny. I saw this on Twitter the other day from @DanNunan and then someone sent it to me...
2009-03-10
768 reads
I went to get new business cards from VistaPrint recently. There are lots of choices and it took longer than...
2009-03-10
624 reads
SQL Server allows nesting of Transactions –in a sense. In truth, there is only one Transaction, with each ‘nested transaction’...
2009-03-10
790 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...
Comments posted to this topic are about the item SSRS Reminded Me of the...
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...
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