2018-08-08
645 reads
2018-08-08
645 reads
2018-08-07
232 reads
2018-08-07
942 reads
The use of terminators in T-SQL is incredibly inconsistent. Steve Jones thinks it will always be this way.
2018-08-06
87 reads
2018-08-06
815 reads
This Friday Steve Jones is wondering if the SQL Server platform does the job well enough for most people, or are there holes that need to be filled with new features.
2018-08-03 (first published: 2014-09-26)
242 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-08-03 (first published: 2018-07-16)
1,909 reads
2018-08-03
824 reads
I’ve been using the Redgate Software Data Masker for SQL Server in a number of situations to help customers. This...
2018-08-02 (first published: 2018-07-17)
2,052 reads
2018-08-02
932 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