Try this:
1. Create index without reverse scan.
Sample:
CREATE INDEX schema.index_name ON schema.table_name (col1 asc, col2 asc);
2. reorgchk on schema.index_name
Look for ISIZE parameter with is "index size".
3. drop index and create index with reverse scans:
Sample:
CREATE INDEX schema.index_name ON schema.table_name (col1 asc, col2 asc) ALLOW REVERSE SCANS;
4. reorgchk on schema.index_name
Look for ISIZE parameter with is "index size".
5. Compere the ISIZE parameter of step 2 and step 4.
Hope this helps,
Grofaty