TechED - Building an SOA Data Center
Talking about heterogenous systems, usually legacy systems. How do you move to a new architecture?
You must start with the old...
2008-06-10
767 reads
Talking about heterogenous systems, usually legacy systems. How do you move to a new architecture?
You must start with the old...
2008-06-10
767 reads
I recently purchased a Dell XPS M1530 laptop for use both for professional work (consulting & presentations) and ministry (mostly presentations)....
2008-06-10
795 reads
I was going to hit a Powershell lab because the Scripting Guys at TechNet write great columns, but it filled...
2008-06-10
1,301 reads
It's a rite of passage in our business that we have to learn the RAID levels, and I still enjoy...
2008-06-09
506 reads
Attendance on Saturday about 450 across the communities (SQL, .Net, DNN, etc). Not as big as we'd hoped, but still...
2008-06-08
434 reads
Shawn Weisfeld has been the President of ONETUG (Orlando .Net Users Group) for the past three years and has just...
2008-06-08
479 reads
I still remember hearing an executive in IT at Virginia Power start a sentence like this, and he went on...
2008-06-06
700 reads
One of the big themes this year for Microsoft (and I just saw it on the PASS Summit site) is...
2008-06-05
708 reads
Today I ran to the co-location facility for FourDeuce and End to End Training, to upgrade our database server to...
2008-06-05
677 reads
Our main presentation was on 'Unlocking the Power of SQL Compact' by Steve Lasker & Ginny Caughey. Went better than I expected...
2008-06-04
421 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