2018-07-17
786 reads
2018-07-17
786 reads
There are lots of databases to choose from. Steve discusses using more of them in your work.
2018-07-16
109 reads
The most important thing for a data guy is having a way to restore data. If security, performance, etc. are...
2018-07-13 (first published: 2018-07-05)
2,319 reads
2018-07-13
87 reads
2018-07-13
861 reads
2018-07-12
109 reads
Next week is SQL Saturday #729 – Lousiville and I’m making the trip. This will be my third or fourth trip...
2018-07-12
411 reads
2018-07-12
1,152 reads
2018-07-11
768 reads
In this piece, we find out about a business issue that can occur when using key value pairs in your database to describe information about other entities.
2018-07-10
608 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
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
Comments posted to this topic are about the item Why Your SQL Permissions Disappeared
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