Q3 Review
Finally I am getting around to posting my Quarterly Goal review. Last quarter’s review can be found here.
Start a Blog
This...
2010-10-26
745 reads
Finally I am getting around to posting my Quarterly Goal review. Last quarter’s review can be found here.
Start a Blog
This...
2010-10-26
745 reads
I have been meaning to write this for a while, but i wanted to wait for a break in SQLDrama....
2010-10-26
375 reads
Pre Conference seminar voting is up now. Go make it happen! Here's the description of our session:
Title:
Business Intelligence Workshop
Speaker:Patrick LeBlanc,...
2010-10-26
919 reads
The SQLRally, a new PASS initiative taking place in the spring, is going to be a community driven event. This...
2010-10-26
1,073 reads
Ok so I know this is late, but I wanted to thank Jack, Andy and the team at the Orlando...
2010-10-26
346 reads
This past Saturday, our NTSSUG group hosted SQL Saturday 56, which was our second SQL Saturday of the year. This...
2010-10-26
1,052 reads
I had done a little work with CDC last year, experimenting with the way that it handles changes in your...
2010-10-26
2,457 reads
SQLSaturday #59 – Speaker Interview #11 with Steve Simon
Queue the track. I can’t help hearing the theme song from Indiana Jones...
2010-10-26
718 reads
With SQLSaturday #49 we tried something I call micro-sponsors, charging $5 for a blogger to sponsor the event. It’s a...
2010-10-26
993 reads
There’s a change in how pre-conference seminars are being picked for the SQL Rally event next year in Orlando, FL....
2010-10-26
1,073 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