2018-10-23
160 reads
2018-10-23
160 reads
Coeo is a partner with Redgate Software. Tomorrow they are hosting a webinar on what your position will be if...
2018-10-23
395 reads
2018-10-23
746 reads
2018-10-22
64 reads
I saw this cartoon, which I think is great: Data Security. It’s from John Klossner, and it perfectly shows that...
2018-10-22 (first published: 2018-10-11)
2,133 reads
This week is the last live SQL in the City Summit this year. It’s this Friday at the Microsoft office...
2018-10-22
747 reads
2018-10-22
912 reads
2018-10-19
1,057 reads
2018-10-18
779 reads
2018-10-17
589 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...
WA:08218154393 Istana Regency Sudirman, Jl. Raya Cijerah Raya No.2 Ruko No 19 & 20,...
WA:08218154393 Jl. Asia Afrika No.122-124, Paledang, Kec. Lengkong, Kota Bandung, Jawa Barat 40261
Comments posted to this topic are about the item BIT_COUNT II
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