Inside A Datacenter
I spent the last 4 days in Denver helping my company move in a new datacenter and while I was...
2009-05-20
577 reads
I spent the last 4 days in Denver helping my company move in a new datacenter and while I was...
2009-05-20
577 reads
I got my MVP goodies the other day in the mail. My bag is upstairs, not yet used, but I...
2009-05-20
1,102 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-05-20
601 reads
I saw this mentioned on Twitter, and watched it while doing some light editing and scheduling. It’s from TechEd 2009...
2009-05-20
4,899 reads
Denny Cherry wrote a blog post recently discussing whether to run anti-virus software on Sql Server machines. He said you...
2009-05-20
781 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-05-19
744 reads
We'll be meeting at Chipotle in Altamonte Springs on May 23, 2009 at 11:30 am to discuss plans for the...
2009-05-19
557 reads
I'm planning on attending the Thur meeting of the Denver SQL Server Users's Group this Thursday, May 21, 2009. If...
2009-05-19
1,134 reads
... and other times, they are stop-you-in-your-tracks funny. Here's an example of the latter:
http://msmvps.com/blogs/brianmadsen/archive/2009/04/21/funniest-code-comment-ever.aspx
2009-05-19
715 reads
Yesterday I did something I wouldn't have thought of doing a year ago: I stayed home. When I woke up,...
2009-05-19
854 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