SQL SERVER 2012 ColumnStore Index -
when create columnstore index on huge table,does use separate physical storage on disk store coulmn store index or changes storage structure of base table row-stoarge column store.
here question is, when create normal index on table, store sthe indexed column data b-tree using separate storage without affecting base table,the same way columnstore index does?
only nonclusterd columnstore indexes supported in sql server 2012 table not reorganized.
http://msdn.microsoft.com/en-us/library/gg492153.aspx
nonclustered
creates columnstore index specifies logical ordering of table. clustered columnstore indexes not supported.
Comments
Post a Comment