Adobe Flash Player Update Available
There is an Adobe Flash Player available to address a security issue. The bulletin shows as being released February 24,...
2009-03-06
1,319 reads
There is an Adobe Flash Player available to address a security issue. The bulletin shows as being released February 24,...
2009-03-06
1,319 reads
Microsoft's advance security bulletin has come out and it looks like they are planning on releasing 3 security bulletins on...
2009-03-06
690 reads
One nice thing is that the G1 has a good browser, basically the same technology as the iPhone, so I...
2009-03-06
375 reads
I saw a great blog post from Brent Ozar about whether or not you are being treated fairly at work....
2009-03-06
536 reads
I just finished reading Just Culture, which talks about the challenges of building a system that encourages people to report...
2009-03-05
339 reads
Once again I was tagged to answer a question. This time by Chris Shaw http://chrisshaw.wordpress.com .
Here is the question: Do...
2009-03-05
575 reads
This week I've been at the Microsoft MVP Summit in Washington State. This is my second summit, and I was...
2009-03-05
1,108 reads
My friend Chris loaned me his copy of eBoot Camp as I'm trying to strengthen what I consider to be...
2009-03-04
372 reads
Question: How do we handle transaction log maintenance for a mirrored database?
This question was asked on a technical discussion group....
2009-03-04
23,508 reads
During the month of February, I participated in the Get Fit in February challenge last month. Along with a few...
2009-03-04
632 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