Landing on the Hudson River & Being a Hero
I think we've all seen and heard about Flight 1549 doing the emergency landing on the Hudson River. Truly a...
2009-02-12
569 reads
I think we've all seen and heard about Flight 1549 doing the emergency landing on the Hudson River. Truly a...
2009-02-12
569 reads
There are a number of occasions when one might want to insert information at various places in a string. Where...
2009-02-12
1,886 reads
Someone tagged me, and I’ve lost the email in all the pile up from vacation where I was very, very...
2009-02-12
1,034 reads
A short post today. For a while I've been subscribing to the Word of the Day from Merriam-Webster (free) and...
2009-02-11
621 reads
You may want to read Part 1, Part 2, and Part 3 before continuing. This time around I'd like to...
2009-02-11
549 reads
Scott Klein invited me to speak to his group in West Palm Beach, so I'll be going down on May...
2009-02-11
495 reads
I was tagged by Grant Fritchey (aka Scary DBA) in the latest get-to-know-you question. This one asks, “What do you...
2009-02-11
2,254 reads
Registration for SQLBits IV, to be held in Manchester, England on Saturday, March 28, 2009, is now open. This free...
2009-02-11
579 reads
Brent Ozar wrote his Things you know now and in it he says this under his first point, Pick one...
2009-02-11
2,235 reads
Affected Versions:
SQL Server 2000 SP4SQL Server 2005 SP2Unaffected Versions:
SQL Server 2005 SP3 SQL Server 2008Original Vulnerability Report:http://www.securityfocus.com/archive/1/archive/1/499042/100/0/threaded
Microsoft Security Bulletin Link:http://www.microsoft.com/technet/security/bulletin/ms09-004.mspx
Brief Analysis:
The...
2009-02-11
895 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