Free SQL Sticker from Paul Nielsen
A little while ago Paul Nielsen tweeted about having free Euro-style SQL stickers. All one had to do was email...
2008-08-04
1,887 reads
A little while ago Paul Nielsen tweeted about having free Euro-style SQL stickers. All one had to do was email...
2008-08-04
1,887 reads
Apparently the Kindle is a great success, financially, for Amazon. That's good to hear, though I haven't made the decision...
2008-08-04
747 reads
The SANS Internet Storm Center has a great handler post about working at the Abuse department for an ISP:
Securing a...
2008-08-04
798 reads
Moving Tempdb isn't a common operation, and mercifully a simple one if it comes to that. As in much of...
2008-08-04
301 reads
We've got two technical sessions scheduled for tomorrow night. The first is by long time oPASS member Dolores Tofel discussing...
2008-08-03
320 reads
I recently got a request to do a "cold" backup of a small yet complex db environment, I say "small" because...
2008-08-02
720 reads
In the current issue of Redmond magazine there's an interesting story in the Never Again column. It's titled:
Listen to the...
2008-08-02
929 reads
I'm tech editing a book on Full-Text Search for SQL Server 2008 and the last few weeks have been quite...
2008-08-01
1,291 reads
The network scanner Nmap has a new version out, 4.68. The GUI interface (Zenmap) which comes with the Windows installer version...
2008-08-01
577 reads
SQLSaturday #5 in Olympia is progressing nicely. 85 registered, venue locked in, and work under way for fund raising via...
2008-08-01
563 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