Hybrids are Popular
Is that really what people want? At least in the US? This note talks about how KPMG surveyed executives and...
2010-01-08
406 reads
Is that really what people want? At least in the US? This note talks about how KPMG surveyed executives and...
2010-01-08
406 reads
I finally got my laptop today. I had to drive to the local Shell gas station to get it, but...
2010-01-08
506 reads
How is it possible to aggregate 12,000,000 records of sales data in a short time window? In this presentation you...
2010-01-08
1,165 reads
The CES show this week had a few new e-reader concepts coming. I think this technology is due to explode,...
2010-01-08
538 reads
The problem of the day: I stumbled on this problem on the Microsoft Reporting Services Forum website and thought it...
2010-01-08
3,182 reads
The CES show this week had a few new e-reader concepts coming. I think this technology is due to explode,...
2010-01-08
385 reads
The Billion Dollar Game: Behind the Scenes of the Greatest Day In American Sport – Super Bowl Sunday
Another from the new...
2010-01-08
628 reads
Like a lemming in the DBA community, I too am going to post my 2010 goals. I am looking to...
2010-01-08
466 reads
Steve Jones at SqlServerCentral.com has created a Blog for me over there at SqlServerCentral.com. I will be syndicated there and...
2010-01-07
606 reads
The simple query SELECT @@VERSION can quickly tell you quite a bit about a SQL Server installation (and the underlying...
2010-01-07
4,132 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...
Comments posted to this topic are about the item SSRS Reminded Me of the...
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...
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