Managing By The Numbers Part 1
I have a long held belief that if you really care about results, you have to measure them somehow. The...
2008-12-07
314 reads
I have a long held belief that if you really care about results, you have to measure them somehow. The...
2008-12-07
314 reads
Brent Ozar had a nice post recently on starting a technical blog, well worth reading and a good addition to...
2008-12-07
279 reads
I could have sworn that my SQL Server Magazine seemed much smaller this month. When I pulled out last’s months...
2008-12-07
1,304 reads
With each new release of SQL Server version, there is something new to learn. In SQL Server 6.5 days, it...
2008-12-05
789 reads
An interesting idea in this video. I’d recommend you watch this if you have too much email. It's from the...
2008-12-05
431 reads
One interesting thing about doing the podcasts and working from home is that I tend to shave a bit more...
2008-12-05
391 reads
Last event of the year here in Florida. I'll be heading to the Tampa Code Camp to do a presentation...
2008-12-04
224 reads
I attended this years PASS Summit in Seattle and it turned out to be a great event. Many of the...
2008-12-04
476 reads
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,074 reads
There's a lot to it, but I see Tim Ford has a nice blog post on what it means to...
2008-12-04
489 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