Free SQL Server Health & History (SQLH2) Tool Updated for SQL Server 2008
Microsoft's free SQL Server Health & History tool (SQLH2) has had a minor update and can now be used with SQL...
2008-10-21
2,271 reads
Microsoft's free SQL Server Health & History tool (SQLH2) has had a minor update and can now be used with SQL...
2008-10-21
2,271 reads
Recently I posted about Managing My Todo List and I had a question via email about what notepad I was...
2008-10-20
799 reads
I know, another non-technical blog post. But this one is career-related as well.
In high school I was introduced to...
2008-10-20
1,346 reads
SQL Server and Sybase are geared up
to send information to applications over two distinct channels, the results in
one channel that...
2008-10-20
902 reads
I posted Do You Understand Microsoft Licenses about a week ago, and today happened to run across a note about...
2008-10-20
535 reads
Late in getting this one out there, but it's interesting to see people's responses. Especially to my story.
As a kid...
2008-10-20
845 reads
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
500 reads
I first ran across these words as a Citadel cadet. Now those who know of my days at El Cid...
2008-10-19
829 reads
I’ve thought this for a long time: you need to run your business as a business, not an investment. Too...
2008-10-19
881 reads
I have two speaking engagements for the week of October 19:
South Florida SQL Server User Group - West Palm Beach - October...
2008-10-18
694 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