ColumnStore Index

External Article

Columnstore Indexes in SQL Server 2012

  • Article

The columnstore index in SQL Server 2012 stores columns instead of rows, and is designed to speed up analytical processing and data-warehouse queries. Whilst columnstore indexes certainly do that effectively, they are not a universal panacea since there are a number of limitations on them. When used appropriately, they can reduce disk I/O and use memory more efficiently.

2013-08-20

3,335 reads

Technical Article

RE: Creating Views: Changing column names

  • Reply

Dennis, try this:IF EXISTS (SELECT TABLE_NAME     FROM   INFORMATION_SCHEMA.VIEWS     WHERE  TABLE_NAME = N'Spain_Orders')     DROP VIEW Spain_Orders GOCREATE VIEW Spain_Orders AS  SELECT  [Order ID],  [Customer],  [Employee],  [Order Date],  [Required Date],  [Shipped Date],  [Ship Via],  [Freight],  [Ship Name],  [Ship Address],  [Ship City],  [Ship Region],  [Ship Postal Code],  [Ship Country] as [DestinationSpain]  FROM Orders  WHERE [Ship […]

You rated this post out of 5. Change rating

2005-03-12

Blogs

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers