Technical Podcasts I Listen To
There are a few podcasts I tend to listen to as I have time. Since I work with a wide...
2008-05-19
4,046 reads
There are a few podcasts I tend to listen to as I have time. Since I work with a wide...
2008-05-19
4,046 reads
I've been working on a rough outline for two new classes that will each be one day long. One on...
2008-05-18
500 reads
As a president of a local PASS chapter, one of the things I've struggled with is getting "locals" to give...
2008-05-17
684 reads
I ran across this a week or so ago. There were a couple of SQL Servers running named instances that...
2008-05-17
10,838 reads
While this will remain a primarily technical blog, one thing I'm going to try and add is each Saturday I'll...
2008-05-16
738 reads
As I went walking last night, I listened to two podcasts from RunAs Radio of interviews of Michael Manos and...
2008-05-16
1,089 reads
Tuesday, May 27, 2008
Speaker: SQL Server MVP Brian Knight
The Midlands PASS chapter will hold a special meeting on...
2008-05-15
636 reads
This year I've been lucky enough to have been offered some prizes or promotions from a few different companies for...
2008-05-15
1,208 reads
Recently I signed up for the FlyClear program (www.flyclear.com), a registered traveler program. Over the past year I've been travelling...
2008-05-15
722 reads
I've grown to like the presenter view in Powerpoint 2007; let's me navigate easily, and more important, lets me easily...
2008-05-13
461 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Telp Cs: 08218200233 Jl. Merdeka No.39, Proklamasi, Kec. Siantar Bar., Kota Pematang Siantar, Sumatera...
Telp Cs: 08218200233 Jl. Asia, Simpang, Jl. Bakaran Batu No.1 C, Sei Rengas II,...
Telp Cs: 08218200233 Wisma Asia, Jl. Letjen S. Parman No.Kav. 79, RT.4/RW.9, Kota Bambu...
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