Adding a folder to the SSIS Package Store
The SSIS Package Store is a nice option available for storing SSIS packages. The Package Store lists packages stored on...
2009-09-28
6,344 reads
The SSIS Package Store is a nice option available for storing SSIS packages. The Package Store lists packages stored on...
2009-09-28
6,344 reads
I stumbled on this article about a spin-off from MIT using solar power to create hydrogen. I think it's a...
2009-09-28
1,101 reads
Last year a large number of MVPs (mostly SQL Server) got together to write a book with all proceeds going...
2009-09-28
565 reads
I’ve just began my 30-day tour of Australia and New Zealand, where I will be making 11 presentations in 9...
2009-09-28
420 reads
If you are available for lunch today don’t forget to sign in and watch Thomas LeBlanc talk about Historical DMV...
2009-09-28
589 reads
I have been installing and configuring SSRS since the initial release. I have always encountered several different caveats when upgrading...
2009-09-28
5,193 reads
I actually got back from camping Sat night, but since I wasn’t scheduled to come back until Sun afternoon, I...
2009-09-28
657 reads
It seems that often I see posts that say “I’m out of space on my drive, what do I do?”...
2009-09-28
1,556 reads
I’ve just began my 30-day tour of Australia and New Zealand, where I will be making 11 presentations in 9...
2009-09-28
483 reads
I saw this post by Neil Davidson about sales people being different that discusses how sales people are compensated and...
2009-09-27
2,498 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