2018-08-30
828 reads
2018-08-30
828 reads
The ways in which we collect and use data aren't always apparent to our customers. Perhaps we should do better.
2018-08-29
38 reads
This picture is out of date. I’ll make sure we get a new one next week at SQL in the...
2018-08-29
367 reads
2018-08-29
572 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-08-28
1,225 reads
We can't protect against all hacks, but can we prove they weren't our fault?
2018-08-28
50 reads
At Redgate, we release a lot of changes to our products. In fact, this is the “About Redgate” slide I’ve...
2018-08-28
1,116 reads
2018-08-28
780 reads
2018-08-27
858 reads
As my kids get older and I spend less time with them, I look forward to visiting new countries. While...
2018-08-24
470 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...
Best Inspection and Auditing Services of India focus on precision, quality control, and compliance,It...
WA:08218154393 Jl. Surabaya No.88 B-C, Ps. Baru, Kec. Medan Kota, Kota Medan, Sumatera Utara...
WA:08218154393 Jl. Perak Bar. No.267, Perak Utara, Kec. Pabean Cantian, Surabaya, Jawa Timur 60165
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