Where Is The SQL Server ErrorLog File?
I seldom lose things; I just cannot find them as quickly as I’d like. This is true for keys, tools, and...
2010-10-19
1,679 reads
I seldom lose things; I just cannot find them as quickly as I’d like. This is true for keys, tools, and...
2010-10-19
1,679 reads
This is actually amazing. A talk on what YouTube does with copyright and how they view it, from TED. It’s...
2010-10-18
1,124 reads
We headed into the SQLSaturday #49 weekend with a $99 seminar on Database Design by Louis Davidson. We ended up...
2010-10-18
660 reads
Sigh… I just spent almost a full work day trying to come up with, what turned out to be a...
2010-10-18
3,165 reads
I am excited to announce a new speaker to the SQL Lunch, Ryan Adams. Ryan will be discussing Database Mirroring...
2010-10-18
773 reads
This past Saturday, I spent the day at SQL Saturday #49 in sunny Orlando. Since Orlando is way out of...
2010-10-18
1,102 reads
SQLSaturday #59 - Speaker Interview #5 with Karen Lopez, (aka datachick)
Let’s trek up North to the great city of Toronto, Canada,...
2010-10-18
1,930 reads
Conference Time! The SSWUG Fall 2010 Virtual Conference is coming up this week. On October 20-22, you can attend a...
2010-10-18
563 reads
About two weeks ago my good friend and former colleague Justin Hostettler-Davie -JHD (Blog | Twitter) asked me via my wife...
2010-10-18
780 reads
SQL Server MVP Arnie Rowland (blog | twitter) has been running a project, Project Phoenix, to benefit unemployed/underemployed developers who are striving to do...
2010-10-17
572 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