PASS Update #2
It's been about two weeks since I posted PASS Update #1, so time for another update on my activities as...
2009-01-14
721 reads
It's been about two weeks since I posted PASS Update #1, so time for another update on my activities as...
2009-01-14
721 reads
If you couldn’t make it to the 2008 PASS Community Summit in Seattle, WA last fall, perhaps you can attend...
2009-01-14
670 reads
There was a time that I really felt I would be more productive with two monitors. I think I found...
2009-01-14
1,278 reads
One of my goals for the year is to update my blog roll some and try to recognize new/interesting bloggers....
2009-01-13
651 reads
SQLBits is the largest free SQL Server conference in Europe, and will include 20 hours of SQL Server sessions to...
2009-01-13
701 reads
If you live in the Colorado area, you might want to attend the upcoming, free Rocky Mountain Tech Tri-Fecta event,...
2009-01-13
423 reads
I have been thinking of writting a blog for the past 6 months but never had time or could I...
2009-01-13
435 reads
Last night, Steve Jones, 41, was preparing a pot of brown rice. After feeling all, he was making a bland...
2009-01-13
620 reads
I'm a technology guy, but one lesson I've learned is that not all solutions can be solved by throwing technology...
2009-01-12
717 reads
I've mentioned before that I was on Twitter and I know that for some the question is still out on...
2009-01-12
917 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