More Evidence Why You Should Avoid Lots Of Conditional Logic In Stored Procedures
Gail Shaw, who is a SQL MVP from South Africa, has an excellent blog post about this subject.
The executive...
2009-09-25
814 reads
Gail Shaw, who is a SQL MVP from South Africa, has an excellent blog post about this subject.
The executive...
2009-09-25
814 reads
Date: 9/28/2009
Time: 11:30 AM
Meeting URL: https://www.livemeeting.com/cc/usergroups/join?id=F7DRFD&role=attend
Presenter: Thomas LeBlanc. Thomas is a Database Administrator for Amedisys, Inc in Baton Rouge, LA....
2009-09-25
585 reads
Yesterday morning around 6AM, my Blackberry started going off. The subject line of every email was, “SQL Timeouts”. In the...
2009-09-25
8,068 reads
This is a great write-up that shows what is important in a phone. It's how you interact with it, not...
2009-09-25
734 reads
I've been wanting to play with the Chroma Key features of my video editing, but I haven't really spent time...
2009-09-25
2,325 reads
My friend Smitha sent me this link about fishbowl conversations as something that might make sense to add to the...
2009-09-24
867 reads
Ran across The Inner Game of Stress: Outsmart Life's Challenges and Fulfill Your Potential ($16 @ Amazon) at the the library,...
2009-09-24
688 reads
Microsoft is offering from 15-25% off selected Microsoft Certification Exams. In order to receive the discount, you must register, schedule,...
2009-09-24
578 reads
Serious technologist and part-time enthusiasts alike know that the Internet is awash in information. Much of the information is good....
2009-09-24
597 reads
Part 2 of the translation for the French version of the Disaster Recovery for SQL Server Databases - comments welcome. Donc,...
2009-09-24
1,514 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
Comments posted to this topic are about the item BIT_COUNT II
Comments posted to this topic are about the item I Can't Make You Learn
Comments posted to this topic are about the item Why Your SQL Permissions Disappeared
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