Question

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

Was it helpful?

Solution

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`
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top