Sybase IQ Index Tips and Tricks
Parallel = the holy grail of speed! Sometimes, but in this case it does. Why on Earth does IQ only allow you to create indexes with parallel option? Ask Sybase! BEGIN PARALLEL CREATE HG index idx_1_HG ON <table> (column_1); CREATE LF index idx_2_LF ON <table> (column_2); CREATE HG index idx_3_HG ON <table> (column_3); …… on …