Yet Another New Database Vendor: EXASOL
Boy, it seems like new database vendors are coming out of the woodwork lately.My most recent discovery, EXASOL, provides a database that is MPP, compressed and memory-based, rather than disk-based. They have also published some impressive looking TPC-H results (here and here). And that's pretty much all that I know about them.
Anybody know more about them?


The high performance is achieved by using much RAM (think of 20 or more servers with 32 GB...), working with compressed data and doing as much as possible in parallel with local data. On a well sized system the query optimizer can use in-memory algorithms instead of disk centric algorithms which gives a big boost to full-table scans, sorts, complex joins. RAM access is hundreds of times faster than disk access.
The system is designed for complex queries on vast amounts of data, e.g. ROLAP, Business Intelligence and so on. For fast inserts or updates a conventional dbms would be the better choice.
On their homepage (www.exasol.com) there is an english whitepaper available for download after registration.
http://360degreeinsight.com/2008/04/23/exasol-ag/
Rick Abbott