Adaptive Server 15.7 SP100 includes changes to the create index command.
create [unique] [clustered | nonclustered] index index_name on database.]owner.]table_name [with {... online, ...}
create index i1 on t1(c1) with sorted_data, consumers = N create index i1 on t1(c1) with sorted_data
Use the hash-based option and additional hash option clauses to gather index statistics on tables.
The syntax is:
create [unique] [clustered | nonclustered] index index_name on database.]owner.]table_name [with {... [, statistics { no_hashing | new_hashing | hashing }] [, statistics max_resource_granularity = int] [, statistics histogram_tuning_factor = int] [, statistics print_progress = int] } ] ...}