Spend More on Security
With a data breach at Marriot, there is a call from one person for companies to spend more on security.
2018-12-20
37 reads
With a data breach at Marriot, there is a call from one person for companies to spend more on security.
2018-12-20
37 reads
Many organizations that run older versions of SQL Server are not patched.
2018-12-19
62 reads
2018-12-18
58 reads
Phil Factor explains the enduring attachment of database developers to wildcards, despite their current deficiencies.
2025-03-17 (first published: 2018-12-17)
513 reads
Table variables have been fixed in SQL 2019, so now I have to decide if I will use them again.
2024-07-26 (first published: 2018-12-11)
342 reads
A new law in Australia might be a source for the worst data breeches we could have.
2018-12-10
84 reads
2018-12-07
101 reads
2020-01-28 (first published: 2018-12-06)
633 reads
Data breaches do more than harm an organization. There's a human cost.
2018-12-05
102 reads
2018-12-04
82 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