Difference between truncate and delete
This is an old topic and well documented, just google it and I believe you will get a lot,
However,...
2008-04-22
2,232 reads
This is an old topic and well documented, just google it and I believe you will get a lot,
However,...
2008-04-22
2,232 reads
I am fairly new to the IT profession, so I think my blog will be great for others trying to...
2008-04-22
1,557 reads
As you may know MS Teched is two weeks this year and is being held in Orlando. Turns out that...
2008-04-22
1,328 reads
Someone asked me this recently and I really had no idea. Quick look in BOL didn't yield any results, so...
2008-04-21
1,822 reads
I hate to say it, but I can't say anything. At least not yet until I confirm some things are...
2008-04-21
670 reads
Our Dell rep sent over this link about Equilogic ISCSI SAN's, pricing is not yet posted but according to him,...
2008-04-21
868 reads
Someone asked me for these recently as they predate the blog. All were posted on SSC over the past couple...
2008-04-17
623 reads
As a mentor I'm looking for someone with the drive to learn and grow, and willing to acknowledge that they...
2008-04-17
537 reads
As I thought might happen, I was too busy after Tuesday and Wednesday to report in. Tuesday was my first trip...
2008-04-17
434 reads
One of the dangers of mentoring someone on your team is that you can easily be perceived as biased, and...
2008-04-16
471 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