2018-10-04
771 reads
2018-10-04
771 reads
2018-10-03
44 reads
2018-10-03
567 reads
Is an index change equivalent to a code change? Steve Jones asks the question and has a few thoughts.
2018-10-02
187 reads
Learn how you can determine which connection is using the Dedicated Administrator Connection.
2018-10-02
3,124 reads
2018-10-02
745 reads
With the need to remove older data, Steve thinks natural keys may be obsolete.
2018-10-01
223 reads
At Redgate, we build tools to help you build software in the entire DevOps cycle. In fact, I love this...
2018-10-01
299 reads
With lots of news coming out of Ignite, Steve talks about a few of the changes.
2018-10-01
60 reads
2018-10-01
746 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