Finding a Work-Life Balance
Like most everyone who works hard in our industry, I’ve run into more than a few conflicts trying to balance...
2009-02-25
1,603 reads
Like most everyone who works hard in our industry, I’ve run into more than a few conflicts trying to balance...
2009-02-25
1,603 reads
If you are interested in speaking at the devLINK Technical Conference in Nashville, TN, August 13-15th, you need to get...
2009-02-25
1,348 reads
Microsoft has introduced a new website (part of Microsoft.com) called Thrive. It is still in its infancy, but its focus...
2009-02-25
1,371 reads
The other day Paul Neilson wrote a simple post making predictions about SQL Server in the Cloud. That got a...
2009-02-25
1,621 reads
Chris Shaw, owner of SQL Oncall, recently had an issue in his business. Chris provides DBA services on a remote...
2009-02-25
1,651 reads
I've scheduled another iteration of my Technical Speaking Seminar for March 14, 2009 in Orlando. It's free, and I'm hosting...
2009-02-24
1,478 reads
Today, Microsoft release a security advisory about a new vulnerability in Microsoft Excel. This one affects both PCs and Macs....
2009-02-24
1,808 reads
This question comes up a lot in the forums: "How do I know if the login owns any objects?" Usually...
2009-02-24
7,443 reads
When the weather is cold, the Prius performs much worse (relatively) than it does when it’s warm. It makes sense...
2009-02-24
1,798 reads
I like being able to view samples on my Kindle. It's one of the very neat features of the Kindle...
2009-02-24
1,655 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