My first presentation for User Group
Yesterday was the first time I gave a presentation to a group of professional who knows SQL Server. I was...
2009-12-04
797 reads
Yesterday was the first time I gave a presentation to a group of professional who knows SQL Server. I was...
2009-12-04
797 reads
My laptop died recently, actually died completely, unable to boot. The hard drive was fine, and I managed to stick...
2009-12-04
484 reads
According to this C|Net report, New York state wants someone to build wind farms in the great lakes and purchase...
2009-12-04
630 reads
The latest Phil Factor challenge is now active here . The prize has now been increased to $100...(read more)
2009-12-04
429 reads
I traveled quite a bit in 2009, hitting 3 SQL Saturdays, 5 user groups and a few other events during...
2009-12-03
423 reads
In the previous post in this series, I discussed the obstacles to implementing electronic health data systems. Because of these...
2009-12-03
1,393 reads
From a Forrester blog: Ten eReader and eBook predictions for 2010.
It’s an interesting read, and I tend to agree with...
2009-12-03
2,235 reads
Let's face it, when it comes to computers there's a 100% certainty that something is going to break eventually. Maybe...
2009-12-03
589 reads
Pinal Dave had a helpful post a few days ago about how to setup and configure SQL Azure. You will...
2009-12-03
1,378 reads
We have covered the Hard Disk and the System Bus. This time around we will cover disk controllers and host...
2009-12-03
6,472 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. Brawijaya No.8, Pocanan, Kec. Kota, Kota Kediri, Jawa Timur 64123
WA:08218154393 Jl. Jenderal Basuki Rahmat No.70-74, Klojen, Kec. Klojen, Kota Malang, Jawa Timur 65111
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