Keep It All
We could use more intelligence in our backup systems, since we don't need to keep all those files.
2018-04-20
69 reads
We could use more intelligence in our backup systems, since we don't need to keep all those files.
2018-04-20
69 reads
I really like the dbatools project. This is a series of PowerShell cmdlets that are built by the community and...
2018-04-20 (first published: 2018-04-13)
2,423 reads
A quick post on SQL Prompt here. Someone is asking about the Prompt Actions menu. This is the menu that...
2018-04-19
992 reads
Dear Mr. Martin and the PASS Organization,
In the spirit of advocating for change in a public way, I’m writing this...
2018-04-18
1,142 reads
A good security system needs layers since our applications and platforms don't exist in a vacuum.
2018-04-18
58 reads
2018-04-18
640 reads
Machine Learning is an exciting branch of computer science, but it doesn't solve all our problems.
2018-04-17
78 reads
2018-04-17
768 reads
The pre-conference sessions for the 2018 PASS Summit were released.
2018-04-16
74 reads
2018-04-13
76 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