Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.
Here is the sql to view the indexes on an oracle table. Just replace MYTABLENAME with yout table name:
select index_name, column_name, column_position from user_ind_columnswhere table_name='MYTABLENAME' order by index_name, column_position