Yep, definitely trust your Enterprise class systems on Consume grade hardware. Good luck!
I never claimed to be an expert on the subject, so didn't expect to know the ins and outs of it all, though most places I'd looked suggested that if you can have your DBs run from RAM then it was a good idea to do it. Some interesting information though, I'll be having a further read about some of this though, quite a lot to it all.
As for the server itself, I'm not looking into that now anyway, too much else on my desk at the moment to deal with that.
And that's the reason all enterprise to this day runs nothing but IBM mainframes ...
I never claimed to be an expert on the subject, so didn't expect to know the ins and outs of it all, though most places I'd looked suggested that if you can have your DBs run from RAM then it was a good idea to do it. Some interesting information though, I'll be having a further read about some of this though, quite a lot to it all.
As for the server itself, I'm not looking into that now anyway, too much else on my desk at the moment to deal with that.
Sticking the DBs in RAM doesn't fix anything. Yes the parts of them held in RAM are going to be faster but heed the following:
SQL doesn't load entire databases into RAM because the RAM is there, if data isn't being hit hard it doesn't always remain in RAM. It's up to SQL how it manages this, don't assume it'll treat it as a dedicated RAM Disk.
You STILL need a disk subsystem that can keep up and write back the changes made in RAM to storage, else if the server crashes you lose everything that's in still held RAM and hasn't been written back to disk. This is why RAID cards come with battery backup for the cache. If as little as 256MB of cache is worth protecting...how bad would it be to run 100+GB in un-backed volatile memory?
Really, it's overkill 99.9% of the time to have them 100% in memory.