Search found 1 match

by sfali16
Thu Aug 29, 2013 3:28 pm
Forum: Vertica Performance Tuning
Topic: Finding projection definitions
Replies: 6
Views: 19775

Re: Finding projection definitions

The following sql should get you the projection definition: select * from projection_columns where projection_name='name_of_your_projection' order by sort_position, column_position; To find the projection_name: select * from projections where anchor_table_name='table_for_which_projection_was_created';

Go to advanced search