Speaking for SQL Lunch on Wednesday
This coming Wednesday I'll be speaking for SQL Lunch on the topic of Auditing Database Permissions in SQL Server. The abstract for...
2010-10-22
517 reads
This coming Wednesday I'll be speaking for SQL Lunch on the topic of Auditing Database Permissions in SQL Server. The abstract for...
2010-10-22
517 reads
Tuesday at 12:30 pm I will be presenting for SQL Lunch giving you an overview of some common DAX Expressions...
2010-10-22
1,001 reads
SQL Saturday #56, Dallas BI edition, is tomorrow. Last night before the NTSSUG meeting, we had an unusually high number of...
2010-10-22
800 reads
Wow! Minnesota’s SQL Saturday event is next week already. We still have a lot to do to be ready. Some...
2010-10-22
559 reads
SQLSaturday #59 – Speaker Interview Series #9 – with Scott Weinstein
To round off the week, we bring you a short interview with...
2010-10-22
653 reads
So far SQLSaturday Tampa will be the first SQLSaturday of 2011, and the first one I’ll be attending in 2011...
2010-10-22
581 reads
There are different ways you can communicate to sql server: 1. Shared memory: on the local server 2. Named Pipe:...
2010-10-21
551 reads
I recently ran a poll, asking DBAs how often they ran DBCC CHECKDB against their databases. Compared to some of...
2010-10-21
3,078 reads
I was just writing a thank you message to our speakers for SQLSaturday #49 and wanted to write down a...
2010-10-21
588 reads
No matter whether you provide the food or have people pay for it, it seems that at every SQL Saturday...
2010-10-21
685 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