If we create an index like this:
create nonclustered index idx_person on person(gender, name)
in ASE 12.5, there'll be created statistics (more precisely an histogram) for the major atribute (gender) but nothing is done for the minor atribute name.
Because of that, the optimizer can select a worst query plan when making a select like this:
select * from person
where gender = 'M'
and name = 'John Doe'
It might choose a worst query plan because it'll give the default selectivity values for the column name. With that, a table scan can be better than choosing the index.
!
What I want to know is if in ASE 15.x, when a index is created with more than one column, the statistics are run for all index columns?
Or if we've to use the following commands to update the index statistics:
update statistics person(name)
update index statistics person index_person
Thanks in advance! :)