The Basics of Troubleshooting
After seeing several cases in the past couple of months where I felt the basics of troubleshooting were violated, I...
2010-12-06
2,223 reads
After seeing several cases in the past couple of months where I felt the basics of troubleshooting were violated, I...
2010-12-06
2,223 reads
Took a break from posting this last Friday due to the holidays. But I'm back with the weekly updates.
Monday
PASS Data Warehousing/BI...
2010-12-03
941 reads
Last night we were troubleshooting really poor performance on a core system. One of the things being investigated was a...
2010-11-24
1,031 reads
Tuesday
Pragmatic Works - Building Calculations in SSAS 2008 - Brian Knight
PASS - PASS Summit 2010 Recap Round Table - Aaron Nelson
I'll be trying to...
2010-11-19
636 reads
And I guess the experts would say that I probably should. I know that the professional development presentations by Steve...
2010-11-19
1,825 reads
... and I'm wary, but not weary. I'm not weary because I'm looking forward to trying to help. I'm not weary...
2010-11-18
1,141 reads
I needed to figure out how much space was required to maintain 7 days of event log entries for the...
2010-11-17
2,349 reads
This is a problem we just solved, which was causing us to not be able to hit the remote registry...
2010-11-16
2,283 reads
Tuesday
SQL Lunch - Get a Lever and Pick Any Turtle: Lifting with Metadata - Cade Roux
Pragmatic Works - SSIS Dataflow - Designing for Performance...
2010-11-12
797 reads
and so did you, if you are a member of the SQL Server community.
I had of the three abstracts in the...
2010-11-11
651 reads
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
The Joyful Craftsmen has become the new owner of Revolt BI. The merger creates...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
Comments posted to this topic are about the item BIT_COUNT I
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers