Getting Started With Consulting Webcast Recording Now Available
If you missed my PASS Professional Development Virtual Chapter Webcast “Getting Started With Consulting” last week, it’s now available online.
I...
2011-01-25
807 reads
If you missed my PASS Professional Development Virtual Chapter Webcast “Getting Started With Consulting” last week, it’s now available online.
I...
2011-01-25
807 reads
This post is about two things:
1) Your Page Verification Settings are Critical
You should confirm you are running with the correct...
2011-01-25
1,281 reads
Want a legitimate chance to win an eBook reader like a Kindle? Would having it loaded down with eBooks on...
2011-01-25
826 reads
Minnesota SQL Server User Group (PASSMN) will be meeting today. Come down and learn about SQL Server with Kalen Delaney...
2011-01-25
513 reads
In December 2010, I started a little series called SQL Confessions. The idea of this series is as a learning...
2011-01-25
651 reads
In December 2010, I started a little series called SQL Confessions. The idea of this series is as a learning exercise when I come across something that I either...
2011-01-25
9 reads
#46-SQL Azure – Cloud Database Coolness
Don't miss this lunch.
Speaker: Scott Klein
Add To Outlook: Add To CalendarMeeting URL: https://www.livemeeting.com/cc/usergroups/join?id=3BGZJG&role=attend
Date and Time:1/26/2011 11:30:00 AM...
2011-01-25
718 reads
This is a temporary post that was not deleted. Please delete this manually. (983091ab-b664-45c1-9b17-9e54b839020e – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
Digg This PostStumble This Post
2011-01-25
423 reads
Being average is dull. Are we consistently producing quality that we can be proud of, each and every time? So...
2011-01-25
575 reads
With what looks to be five books planned in a new series by Rick Riordan, people have some good fantasy...
2011-01-25
545 reads
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...
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
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