tags:

views:

46

answers:

1

Is there a "Force Index" from MySQL equivalent in Vertica DB?

+2  A: 

You can select directly from a projection instead of the table. For instance, instead of

select col from foo;

do this:

select col from foo_p1;  -- where table_p1 is a projection of table foo`
stac
Just wanted to confirm this answer.
geoffrobinson