Cursors to Increase Performance?
I recently had the chance to look over a friends shoulder at a query that needed some tuning work. In...
2007-07-06
729 reads
I recently had the chance to look over a friends shoulder at a query that needed some tuning work. In...
2007-07-06
729 reads
One of the suggestions I saw today was to add blogs to the user profile on the site and not...
2007-07-05
655 reads
I just got my author copies of the Sybex book for exam 70-444 and have to say the book looks...
2007-07-05
743 reads
I wrote an article recently on the Journey To Katmai, looking at some of the new features that are coming...
2007-07-04
671 reads
Some of you younger DBA’s out there may not know who Neil Sedaka is or remember his poignant words "Breaking...
2007-07-03
616 reads
Most people I know tend to work in one of two places consistently: work or home. So they've built a...
2007-07-03
570 reads
Breaking Up is Easy to DoHardIt's nice to be able to package a process into a single, tidy, elegant query,...
2007-07-03
603 reads
This is pretty cool, a, earthquake test for Project Black Box from Sun. They take one of their systems to...
2007-07-01
632 reads
No, I'm not going to keep making corny references to war and being a soldier. But in many ways, we...
2007-06-29
1,342 reads
The active SQL Server error log is one of the first places people look when there is a problem. For...
2007-06-29
1,594 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