Closing Out PASS Summit 2009
I was up early again on Friday morning to have breakfast with Patrick Leblanc (SQLLunch man), and then off to...
2009-11-09
626 reads
I was up early again on Friday morning to have breakfast with Patrick Leblanc (SQLLunch man), and then off to...
2009-11-09
626 reads
I’m trying to pay more attention to things that cause me stress and how I deal with the stress. It’s...
2009-11-09
930 reads
I intended to blog daily while at the PASS Summit last week. At least that's what I told myself I...
2009-11-09
797 reads
Reports that use an Analysis Services cube as a data source can often have performance problems during pre-execution. Before you...
2009-11-09
3,071 reads
Barnes and Noble recently announced their new e-book reader, the Nook. It looks pretty cool, and in some ways I...
2009-11-09
800 reads
Well if you attended PASS, you already know that I am changing jobs. I recently accepted a position with Pragmatic...
2009-11-09
673 reads
I’ve never been to Las Vegas, and was looking forward to going for the first time this week for SQL...
2009-11-09
579 reads
I’ve already written four posts (1, 2, 3, 4) that discussed what I did at the Summit, including what I...
2009-11-09
417 reads
A few random thoughts:
I think many people did ok at the airport connecting for ride share via Twitter. By next...
2009-11-09
370 reads
Meeting URL: Join Meeting
Click Here to Add to Outlook Calendar
Click the above Meeting URL around 11:00 AM CST on 10/12/2009...
2009-11-09
726 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