Culture Cubes
A while back I posted about Culture Posters, a technique for trying to build your culture by writing down the...
2011-11-17
818 reads
A while back I posted about Culture Posters, a technique for trying to build your culture by writing down the...
2011-11-17
818 reads
This is a continuation of my DBA in Space journal.
In this next series of blog posts, I am going to...
2011-11-17
683 reads
When I’m managing I tend to absorb the stress that my teams feel. It’s my job to help them be...
2011-11-17
635 reads
Stuff me in a wood chipper, I have an idea. And this idea involves Fargo, Fargo, and SQL Saturday.
As many...
2011-11-17
731 reads
November 17, 2011 - Redmond, WA - Well, we knew it was coming, but the timing was a bit of a surprise for...
2011-11-17
2,577 reads
I'm very proud to announce today that I'm running next year
a new event series across Europe: the SQL Server 2012...
2011-11-17
833 reads
I try to speak and write about career things on a regular basis because I think they’re important topics for...
2011-11-17
1,663 reads
SQL Server 2012 RC0 (Release Candidate 0), formerly known as SQL Server Denali, is now available for download. SQL Server 2012...
2011-11-17
1,096 reads
This week we’re going to talk about a topic that has been gaining steam in the last few years and...
2011-11-17
1,166 reads
Since I am in the Collation Sensitive mood, I am finally getting around to updating this script. This is the Table Space script that I have had out there...
2011-11-17
9 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...
Telp Cso: (0821)8200174 Jl. Cokro Aminoto No.28, Kisaran Kota, Kec. Kota Kisaran Barat, Kabupaten...
Telp Cso: (0821)8200174 Jl. Merdeka No.39, Proklamasi, Kec. Siantar Bar., Kota Pematang Siantar, Sumatera...
Telp Cso: (0821)8200174 Jl. Asia, Simpang, Jl. Bakaran Batu No.1 C, Sei Rengas 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