Netbook – Finding a GB
I turned on my netbook for the first time in a few weeks recently. My laptop had died, and I...
2009-12-16
730 reads
I turned on my netbook for the first time in a few weeks recently. My laptop had died, and I...
2009-12-16
730 reads
It seems that the SQL community is really growing. There are now quite a few events that you can attend...
2009-12-16
991 reads
I was checking on the status of my laptop the other day. It died and I shipped it back to...
2009-12-16
962 reads
SQLSaturday #37 will be held March 13, 2010 at Mandeville Hall, St. Joseph's University, 5600 City Line Ave, Philadelphia, PA....
2009-12-16
560 reads
I was tagged by Mike Walsh in the latest meme to circle the SQL Server community, which is what is...
2009-12-16
1,644 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-12-15
582 reads
I had a question from a member of our local user group about options to get a legal copy of...
2009-12-15
743 reads
Endgadget has a post up about an upcoming 32nm Westmere family CPU called the Core i7-980X, which will have six...
2009-12-15
764 reads
I was tagged earlier this week by Tim Ford to comment on my biggest weakness. I wish I could say...
2009-12-15
785 reads
Each year I attend an annual Christmas party that’s essentially a JD Edwards Operations department party. JD Edwards hasn’t existed...
2009-12-15
714 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