Speaking Engagements for The Modern Resume
I’m giving my talk on The Modern Resume – Building Your Brand a few more times this year and I’ve got...
2009-05-25
992 reads
I’m giving my talk on The Modern Resume – Building Your Brand a few more times this year and I’ve got...
2009-05-25
992 reads
Today in the United States we celebrate Memorial Day, the day we remember American casualties of any military action. Though...
2009-05-24
564 reads
I installed Hyper-V onto a new machine as a role for the base Windows 2008 server role. It required a...
2009-05-22
1,031 reads
I'm on a few publishers' lists as someone that reviews books, works with SQL Server, and in general might help...
2009-05-22
759 reads
The Making of the Atomic Bomb by Richard Rhodes ($14 at Amazon) was a book I picked up for travel,...
2009-05-21
679 reads
I was late with family issues, and so I missed the social time when I was expecting to do a...
2009-05-21
618 reads
As Brad McGehee mentioned recently: SQLTeach (a part of the larger DevTeach event) will be held in Vancouver, BC this...
2009-05-21
1,063 reads
My Dearest Mister André Pratte,
Regarding your article in the Globe and Mail, I was quite surprised to see you run...
2009-05-21
1,600 reads
I saw an interesting blog post from Andy Leonard (@AndyLeonard) recently on what he thought Twitter was. I'd started my...
2009-05-21
1,911 reads
I just finished up my third coaching call with Don Gabor (Part 1, Part 2, Part 3, Part 4) and...
2009-05-20
665 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. Raya Puputan No.10, Panjer, Denpasar Selatan, Kota Denpasar, Bali 80226
WA:08218154393 Jalan Dokter Sutomo No.3, Banjar Bali, Kec. Buleleng, Kabupaten Buleleng, Bali 81113
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