If You Like Books - Look at LibraryThing
I've been following their blog for a while at LibraryThing and so far it looks interesting. The basic premise is...
2008-04-01
262 reads
I've been following their blog for a while at LibraryThing and so far it looks interesting. The basic premise is...
2008-04-01
262 reads
Looks like my family and I will make the trek down to Jacksonville in May for SQLSaturday. One of my...
2008-04-01
620 reads
This is a meeting reminder about our next PASS meeting scheduled for April 3, 2008. It will once again be...
2008-04-01
680 reads
I'm a little late on this one, but Cesar Cerrudo has announced he's going to demonstrate exploits to Windows Server...
2008-04-01
683 reads
Brian has just posted the schedule of sessions for SQLSaturday #3. I haven't gone through to see how many are...
2008-03-31
1,338 reads
I am here in sunny Orlando at End to End Training. I am very impressed with the new training facility....
2008-03-31
1,378 reads
As I've mentioned a couple times previously I teach a free 'how to be a speaker' course, mainly to encourage...
2008-03-30
1,378 reads
I've just received notice that I will be a presenter at the upcoming SQL Saturday event in Jacksonville, Florida. I'll...
2008-03-30
1,531 reads
I was following a debate on the new Merge syntax in SQL Server 2008 with interest. It was somewhat of...
2008-03-28
1,509 reads
"Select *" is bad. Everyone knows it, but everyone still uses it. I use it. Most of the time it is...
2008-03-28
1,446 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