2018-06-27
640 reads
2018-06-27
640 reads
2018-06-26 (first published: 2015-04-14)
277 reads
2018-06-26
881 reads
2018-06-25 (first published: 2015-02-13)
197 reads
2018-06-25
73 reads
2018-06-25
906 reads
This week Steve Jones is wondering what the common mistakes that T-SQL developers make are.
2018-06-22 (first published: 2015-03-20)
536 reads
A walkthrough of a conversion of a SQL Trace setup to an Extended Event session.
2018-06-21
1,674 reads
I had an issue where an instance of SQL Server was only showing the XTP (In Memory) performance counters. None...
2018-06-21 (first published: 2018-06-11)
2,743 reads
One of the teams at Red Gate is releasing new changes every Wednesday, which reminds Steve Jones of a time earlier in his career.
2018-06-20 (first published: 2015-04-08)
107 reads
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...
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
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
Comments posted to this topic are about the item I Can't Make You Learn
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