Re: Much as I'm a fan of PostgreSQL..
The bigger issue is that the "industrial and manufacturing companies" mentioned as being heavily affected by this problem are particularly concerned about their SCADA and other similar systems being taken down by ransomware.
These pretty much all use software from major automation vendors which run on MS Windows systems only and so are vulnerable to bog standard Windows viruses, including ransomware associated ones. There is usually a database involved, nearly always MS SQL Server. Porting them to another OS means a complete ground-up replacement of the whole application stack, which is a non-trivial undertaking.
Most of these installations, particularly those in factories, are not really suited to moving them to any sort of off-site cloud or data centre, as they rely on frequent low-latency polling of associated industrial hardware. Stuff involving utilities such as water or pipelines might be different due to things just inherently working a lot more slowly in those applications, but high speed assembly lines are far and away the most common industrial application.
A more promising approach to this particular problem for the mentioned "industrial and manufacturing companies" might be to move the existing applications and their associated Windows OS to VMs hosted on another OS. All the application related files and databases could be somehow written through to the underlying host OS instead of being hosted on Windows. Any transaction oriented file storage problem would then be isolated to just those application files necessary. Restoring would involving restarting the VM from a clean image and rolling the file transaction back to a known good point. I'll leave recovering the data from after the roll-back point as an exercise for the reader.
Of course this simply moves the goal-posts from attacks using bog-standard Windows viruses to attacks targeted specifically at the OS hosting the Windows VM. However, it would seem to provide the same sort of solution as DBOS would in this specific application, without replacing the entire application stack and without moving anything to "the cloud".