What's New In Denali for SSRS
I was so excited when I found out that Denali was released last week. Like it was Christmas time, I...
2010-11-16
480 reads
I was so excited when I found out that Denali was released last week. Like it was Christmas time, I...
2010-11-16
480 reads
I have never had the opportunity to go to PASS before, but even though I was unable to attend this...
2010-11-15
332 reads
Write this down… No really… Write it, print it, send it to all of your friends and loved ones. J...
2010-11-15
380 reads
I was creating an SSIS package recently and ran into the “TargetInvocationException: Exception has been thrown by the target of...
2010-11-12
721 reads
Recently, a friend of mine asked me how he could have the date appended to the end of a file...
2010-11-09
13,921 reads
I enjoy blogging. I enjoy passing on the information that I have gathered over the years. I also enjoy doing...
2010-11-09
607 reads
I recently became aware of a special hack in Windows 7. It is called GodMode and can very simply be...
2010-11-09
657 reads
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the third post of my “SQLBIGeek’s Function Friday” blog series. In this series, I am...
2010-11-06
539 reads
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the fourth post of my “SQLBIGeek’s Function Friday” blog series. In this series, I am...
2010-11-05
588 reads
Unlike fine wine, you typically wouldn’t want your statistics to be aged. At least for tables that are being updated...
2010-11-05
11,836 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