Virtual Presentation Tomorrow
I’ll be presenting a practice run at one of my PASS Summit presentations, Identifying Common Performance Problems using Execution Plans,...
2010-10-27
667 reads
I’ll be presenting a practice run at one of my PASS Summit presentations, Identifying Common Performance Problems using Execution Plans,...
2010-10-27
667 reads
Do you know a real-life Pointy Haired Boss? Maybe you don’t work for him, but I bet you’ve met one.
In...
2010-10-27
599 reads
I spent a good portion of last weekend restoring databases from backup due to a large release. Nothing went wrong,...
2010-10-27
850 reads
It’s getting down to brass tacks. There is now only 2 more weeks until the PASS Summit. There’ve been a...
2010-10-26
823 reads
I don’t mean a LaRock aka SQLRockstar, but an actual rock.
I was at dinner last week after our all...
2010-10-26
377 reads
I have no intentions of kicking the bucket – ever. I have no intentions of getting old either. We’ll see how...
2010-10-26
781 reads
A few weekends ago, I participated in my first Tech Fest, speaking at the Houston Tech Fest 2010 event held...
2010-10-26
523 reads
Hey Gang,
Sorry for the absence. I have been offline for a bit dealing with some family stuff. All if good...
2010-10-26
376 reads
Benjamin Nevarez (blog) has been working really hard on a book on the Query Optimizer. It just got finished in...
2010-10-26
598 reads
I'm happy to announce that voting for the 2011 PASS SQLRally Pre-con sessions is now open! There are four tracks:...
2010-10-26
400 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