Updating to SQL Change Automation
The SQL Change Automation release was early this week. This is replacing ReadyRoll and our DLM Automation products, rolling them...
2018-06-20
1,035 reads
The SQL Change Automation release was early this week. This is replacing ReadyRoll and our DLM Automation products, rolling them...
2018-06-20
1,035 reads
2018-06-20
829 reads
2018-06-19
909 reads
Steve Jones talks a bit about the difference between state based and migrations based approaches for deployment.
2018-06-18 (first published: 2015-04-09)
168 reads
What types of sessions are important in a conference schedule? Steve Jones talks a bit about the lack of tuning sessions.
2018-06-15
97 reads
I got the chance to sign up for a few courses from the Brent Ozar Unlimited team and took it....
2018-06-15 (first published: 2018-06-05)
2,936 reads
2018-06-15
955 reads
Steve talks about the importance of test data and how to get it in development environments.
2018-06-14
68 reads
I’ve been trying to get time to play with Docker more. I had it setup on my old laptop and...
2018-06-14
1,116 reads
2018-06-14
900 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