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
2010-02-10 15:06:19
Just wanted to confirm this answer.
geoffrobinson
2010-02-11 15:30:08