Book Review: Alas, Babylon
I just re-read Alas, Babylon by Pat Frank ($10 @ Amazon). It’s a bit of a touchstone for me. It was...
2010-12-03
613 reads
I just re-read Alas, Babylon by Pat Frank ($10 @ Amazon). It’s a bit of a touchstone for me. It was...
2010-12-03
613 reads
Took a break from posting this last Friday due to the holidays. But I'm back with the weekly updates.
Monday
PASS Data Warehousing/BI...
2010-12-03
941 reads
I saw this on Facebook, and while I’m not sure of the list, I reproduced it here. I think that...
2010-12-03
541 reads
This is just a short post for a Friday. There has been a lot written over the past few weeks...
2010-12-03
558 reads
For the next year, I will read from SQL Server Books Online a little every day, and blog about it weekly. ...
2010-12-03
716 reads
Signal Waits vs. Resource Waits
During my presentation at SQLSaturday#59, I spoke about the categories of wait types, such as...
2010-12-03
20,909 reads
I saw a very interesting blog at 37 Signals on the quote “the things you do more often are the...
2010-12-03
547 reads
I’ve got to figure out a good way to present a regular summary of what we do every week. Until...
2010-12-02
652 reads
AdvertisementsClustered index vs Non clustered index structure
Clustered and Non clustered indexes are stored in a B – tree structure .
Clustered...
2010-12-02
2,648 reads
One of the things I promote in all my presentations is the importance of being a proactive DBA. Unfortunately, the...
2010-12-02
619 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