PASS Summit 2008 - Wayne Snyder Keynote
With the dimming of lights, the drone of "Born to be Wild" from Steppenwolf, and an opening film slip of...
2008-11-19
946 reads
With the dimming of lights, the drone of "Born to be Wild" from Steppenwolf, and an opening film slip of...
2008-11-19
946 reads
I spent most of yesterday in the PASS volunteer training. It's not really training, more of a gathering of volunteers...
2008-11-19
920 reads
I got the email with a Zoomerang survey to vote for the PASS board. All are excellent candidates, but ultimately,...
2008-11-18
949 reads
2008-11-18
647 reads
How many mirrrored databases can I have on a server?
10 mirrored databases per server is the recommendation for a 32...
2008-11-18
6,432 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-11-18
574 reads
I endorsed Andy Warren for the board the other day, and I'll stand by that. I'm biased, so if you're...
2008-11-18
1,255 reads
I don't mean to comlpain, and I certainly don't need any more bags, but when I checked in Monday night...
2008-11-18
648 reads
Fairly easy day, up at 5 am for an 8:15 am flight to Seattle via Detroit, arrived about 2:30 pm...
2008-11-17
533 reads
OK, I'm biased. I'll admit it and you have every right to discount my endorsement, but I'll make the case...
2008-11-17
712 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