Lunch with someone new
I met up for lunch with a good friend and former coworker today, and among the topics of discussion was...
2014-02-19
851 reads
I met up for lunch with a good friend and former coworker today, and among the topics of discussion was...
2014-02-19
851 reads
This is the first in a series of technical posts on using parent-child architectures in SQL Server Integration Services. The...
2014-02-07
2,206 reads
I’m happy to announce that I’ll be teaming up with my Linchpin People colleague Bill Pearson for a day of...
2014-01-29
929 reads
I’m kicking off a new series of blog posts discussing the topic of parent-child architectures in SQL Server Integration Services....
2014-01-20
1,353 reads
For me, 2013 was one of the most interesting and busy years of my life. It was a good year...
2014-01-01
774 reads
Earlier this morning I received a notification from the Microsoft MVP program that I’ve been recognized as a SQL Server...
2014-01-01
655 reads
Today is the second day of the 2013 SQL PASS Summit, and I’m again live blogging the event.
8:15: Here...
2013-10-17
844 reads
Today is the first full day of the PASS Summit 2013 conference. This year I’m again joining the blogger table...
2013-10-16
1,106 reads
It’s that time of the year again – time to make your voice heard as a PASS member. The PASS board...
2013-09-25
881 reads
This past weekend I made the relatively short (about 3 hours) trip to the Oklahoma City area to attend and...
2013-08-26
810 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...
WA:08218154393 Jl. Gatot Subroto No.080A, RT.001, Cigobang, Gunungsimping, Kec. Cilacap Tengah, Kabupaten Cilacap, Jawa...
WA:08218154393 Jl. Jend. Ahmad Yani No.118, Sidakaya Dua, Sidakaya, Kec. Cilacap Sel., Kabupaten Cilacap,...
Comments posted to this topic are about the item SSRS Reminded Me of the...
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