September 11 - Never Forget - My story of the tragic day..........
I was sitting going through some of my materials, scripts, emails and news feeds to find a worthy topic for...
2009-09-10
1,332 reads
I was sitting going through some of my materials, scripts, emails and news feeds to find a worthy topic for...
2009-09-10
1,332 reads
Later this afternoon, I’m presenting at the Columbus, Ohio, SQL Server User Group meeting. The topic: SQL Server Locking and...
2009-09-10
356 reads
This question:
Created script to send mails using sp_send_dbmail- working like a charm.
Now searching for a way to get...
2009-09-10
937 reads
We have been working hard trying to get speakers to complete the year for our SQL Lunch schedule. I am...
2009-09-10
711 reads
I see a lot of questions on the forums about updating existing data in SSIS. When the update is dynamic...
2009-09-10
22,364 reads
I got an email the other day from Canada's VIA Rail, advertising "Discover Canada by Train" and the chance to...
2009-09-10
884 reads
To address a few questions on what does the board actually do and to bring more visibility to all of...
2009-09-10
700 reads
I taught myself programming with Quick Basic (started with Turbo Basic but couldn’t find a book on it, so bought...
2009-09-09
370 reads
I got the question the other day, when are you likely to see a spool in an execution plan? Easy,...
2009-09-09
2,807 reads
If you missed out on some of the 24 free, live sessions that made up the 24 Hours of PASS,...
2009-09-09
493 reads
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
Comments posted to this topic are about the item BIT_COUNT II
Comments posted to this topic are about the item I Can't Make You Learn
Comments posted to this topic are about the item Why Your SQL Permissions Disappeared
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