Leveling Up Your TSQL
I thought I’d use this post to round up some of my other posts into a list of often overlooked/unknown...
2019-01-22
257 reads
I thought I’d use this post to round up some of my other posts into a list of often overlooked/unknown...
2019-01-22
257 reads
Watch this week's video on YouTube
The execution plan cache is a great feature: after SQL Server goes through the effort of generating a query plan, SQL Servers saves that...
2019-01-22
10 reads
Watch this week's video on YouTube
The execution plan cache is a great feature: after SQL Server goes through the effort of generating a query plan, SQL Servers saves that...
2019-01-22
7 reads
This article will provide an overview of SQL Power Doc, a powerful script to document SQL Server, including pre-requisites, purpose, installation, processing and output. Automation seems to be an increasing...
2019-01-22
111 reads
This article will provide an overview of SQL Power Doc, a powerful script to document SQL Server, including pre-requisites, purpose,...
2019-01-22
338 reads
So you’ve got a SQL Server that you want to monitor. What should you monitor? In my opinion, at bare...
2019-01-22 (first published: 2019-01-14)
2,669 reads
You need a lot of hard work for success!2018 was a good year for me in a lot of areas...
2019-01-21
251 reads
Getting straight to the point, I initiated a very common task recently, another scale up request. However, a new message...
2019-01-21
236 reads
SQLSaturday Jacksonville 2019 is scheduled for May 4, 2019. The call for speakers closes on March 5.
2019-01-21
187 reads
SQLSaturday Tampa just went live and the call for speakers is open through February 23, 2019. I’ll be attending, hope to see you there!
2019-01-21
10 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