2025-03-12 (first published: 2018-10-19)
1,038 reads
2025-03-12 (first published: 2018-10-19)
1,038 reads
The right tool is important for a good job. Andy Warren asks if you're thought about the tools you use on a daily basis.
2018-10-17
71 reads
2018-10-15
83 reads
Steve notes that modeling and good database design can't be ignored in DevOps work.
2018-10-15
53 reads
In larger shops with multiple database servers, it is very important to have consistency.
2018-10-12
166 reads
2018-10-11
483 reads
Andy Warren talks about the single source of truth for information. It could be the database, but that's not always the best choice.
2018-10-09
251 reads
Steve has a troubleshooting experience that reminds him of a lesson he should have learned.
2018-10-08
79 reads
Performance is a common reason to monitor SQL Server. The work day of a database administrator is often interrupted with unexpected calls about slowness in applications or reports. But, how does the performance today compare to the performance last week or last month? Can the root cause of the issue be traced to the database […]
2018-10-08
49 reads
The idea of a single place to get the status of your environment is an interesting one.
2018-10-05
88 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