Security Issue with SQL Server Reporting Services 2008
I have a CTP of SSRS 2008 deployed to one of my servers. Today I built a couple of reports...
2008-05-30
2,550 reads
I have a CTP of SSRS 2008 deployed to one of my servers. Today I built a couple of reports...
2008-05-30
2,550 reads
I have been thinking about getting the MCT credential for about five years. During the MVP Summit I attended a...
2008-05-30
1,306 reads
Ran across this article about burnout and thought it worth posting. Burnout is not fun to experience and heading it...
2008-05-29
1,430 reads
There is a little quirk with NULLs when using the NOT IN qualifier. I use the term "quirk" loosely here...
2008-05-29
1,601 reads
Brian Kelley posted Giving a Presentation about a week ago and is worth reading, in particular his suggestion about Toastmasters...
2008-05-28
1,464 reads
Or maybe part 3, depending.
Amazon reduced the cost of the Kindle yesterday. It's $40 off, a 10% discount, down...
2008-05-28
1,688 reads
Last night the Midlands PASS Chapter had the pleasure of hosting SQL Server MVP Brian Knight. I was able to...
2008-05-28
1,550 reads
Received news today that one of my submitted sessions - Should You Move Into Management - was accepted for the summit. Good...
2008-05-27
1,346 reads
After being gone for 4 days, I've got a little catching up to do. I try to be prepared before...
2008-05-27
1,501 reads
I get a lot of questions about virtualization and really have few answers. At a high level it's not hard...
2008-05-25
1,684 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