Contact Me Disabled
I've been getting spammed like crazy through the Contact Me link. As a result, I've had to disable it. If...
2008-07-10
621 reads
I've been getting spammed like crazy through the Contact Me link. As a result, I've had to disable it. If...
2008-07-10
621 reads
A couple weeks back I posted Employee or 1099 and now that my friend Wes Dumey has posted his last installment, I...
2008-07-09
319 reads
Po fillojme me publikimin e te gjitha shkurtesave qe perdoren ne SQL Server 2005...fillimisht do ta publikoj vetem nje e...
2008-07-09
601 reads
Hi,
I'm posting the SQL Server 2005 shortcut here...and it is just begining.
If you want to start the SSMS (SQL Server...
2008-07-09
3,320 reads
Ran across IronKey Personal in PC Magazine and thought some of you might be interested. It has built in encryption,...
2008-07-08
282 reads
It's been a long time since I saw a vulnerability in SQL Server released. And to date, there haven't been...
2008-07-08
802 reads
Hi - SQL World!
Here in my blog I will post everything about SQL Server 2000/2005/2008!
Hope that I will help my IT...
2008-07-08
644 reads
I had a note to myself to write up some notes about listening on a non standard port, but it...
2008-07-07
402 reads
I went away in the mountains for July 4th to a camping facility with the family. I was an unwired...
2008-07-07
893 reads
I will be speaking at an upcoming JSSUG (Jacksonville SQL Server User Group) meeting Wednesday July 16th. This event will...
2008-07-07
516 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