I have been researching, SQL Server 2012 (aka Denali) and Microsoft has a pre-release available. The pre-release is located here with some information on key features. As I have downloaded the pre-release and installed on a VM. I have been curious about the following key feature mentioned. But Im not sure of its ability.

Column-based query accelerator

Column-Based Query Accelerator will help dramatically increase query
performance ~10x and reduce
performance tuning through interactive
experiences with data for near instant
response times and streamlined setup
which removes the need to build
summary aggregates.

What I would like is to see some explanation of the performance enhancement and perhaps an example, as I do not understand What "Column-based query" acceleration is? Any Insight would be helpful.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Sounds like a Business Intelligence thing.

Query aren't "interactive" and don't generally have "summary aggregates".

MS has put a lot into Analysis Services.

Edit: it's also possible that it's already known and blogged about, but the marketing monkeys changed the name :-)

link|improve this answer
1  
.. Good point about the marketing monkeys!! – John Hartsock Nov 21 '10 at 18:49
feedback

Columnar storage is a physical layout optimization where data is stored by columns, and not rows. In some use cases, the advantages here are many:

1) less read time - need to compute an aggregate on a value - no need to read the rest of the row - so less read time

2) data compression - as the column data is likely similar, you can get greater compression ratios

3) ordinal indexing (sometimes)

this approach falls apart when data is inserted and updated, but for read-only and append use-cases the performance benefits can be astounding.

Update Refs

http://en.wikipedia.org/wiki/Column-oriented_DBMS http://www.globaldataconsulting.net/articles/theory/columnar-databases-and-data-warehouse

link|improve this answer
1  
..Do you have any reference? – John Hartsock Nov 21 '10 at 18:47
1  
I'm also interested in a reference. I read a paper a while ago touting "column-based storage" and how it pretty much cures cancer, and kept thinking "This guy has no idea what he's talking about", but maybe I missed something major here. I'd love a link to an article that lays it out with a little more detail. – rwmnau Nov 21 '10 at 19:25
ditto... "me too!" – gbn Nov 21 '10 at 19:50
feedback

A little history:

http://www.computerworld.com/s/article/9034619/Relational_database_pioneer_says_technology_is_obsolete

link|improve this answer
He should know. Vertica is pretty darn good and useful. I'm wondering what this approach by SQL Server will be like. – geoffrobinson May 2 '11 at 21:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.