Better Know A SSIS Transform - The Sort Transform
This is part 2 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-11-07
1,507 reads
This is part 2 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-11-07
1,507 reads
This is part 3 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-11-07
1,145 reads
After the first 2 official days of the Summit the brain is already on overload and then the second part...
2009-11-07
545 reads
Using a Deployment Manifest in SSIS allows you to deploy a set of packages to a target location using a...
2009-11-07
953 reads
I recently worked on a project that involved loading a Data Warehouse from a DB2 source. In this project we...
2009-11-07
848 reads
I had another chance last week to answer an email follow up question from the session Brian and I gave...
2009-11-07
852 reads
While in the process of developing SSIS packages it’s likely you will deal with errors occasionally unless you’re the Superstar...
2009-11-07
1,360 reads
I decided to do a little performance testing on some common SSIS “Tricks” that increase speed and effectiveness of SSIS...
2009-11-07
2,768 reads
I presented a 1 hr session at Tampa Code Camp 2009: PowerShell for Developers In this sesssion we will look...
2009-11-07
654 reads
The last full day of the 2009 PASS Community Summit was the first day I have had at the conference...
2009-11-07
697 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...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
Comments posted to this topic are about the item BIT_COUNT II
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