A traveling man
It’s been a long year for me. This year I’ve attended:
SQL Saturday #60 – Cleveland SQL Saturday #66 – Colorado Springs MVP...
2011-12-05
964 reads
It’s been a long year for me. This year I’ve attended:
SQL Saturday #60 – Cleveland SQL Saturday #66 – Colorado Springs MVP...
2011-12-05
964 reads
This is a good way to start monday, with a meme. This month Thomas LaRock has provided us with the theme and his entry here. I thought of following...
2011-12-05
7 reads
This is a good way to start monday, with a meme. This month Thomas LaRock has provided us with the...
2011-12-05
677 reads
I've been a bit busy for the last few weeks, with the holidays, PASS, working on SSIS (more to come),...
2011-12-05
403 reads
Have you ever wanted or needed to get the data and log file size for all of the databases in...
2011-12-05
2,416 reads
Have you ever wanted or needed to get the data and log file size for all of the databases in your server? I have seen scripts that would get...
2011-12-05
19 reads
Part 1 of Question 11—The Question.Part 2 of Question 11:The follow up to the question.This is a continuation of my...
2011-12-05
691 reads
This month for #MemeMonday, Thomas LaRock (Blog | @SQLRockstar) has assigned a topic with a holiday bend to it. The question...
2011-12-05
495 reads
It’s the first Monday of the December, and it’s time to do a monthly checkup. As previously mentioned, the premise...
2011-12-05
904 reads
An XA transaction is a global transaction usually covering multiple resources.
Use the Microsoft SQL Server JDBC Driver to support the ...
2011-12-05
209,538 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