Note: You must be an Oracle DBA to run the script listed below.
Use the following script to get a list of the DocuShare Databases in Oracle:
col index_name format a20
col table_name format a20
col column_name format a30
set lin 100
select table_name, index_name, index_type, last_analyzed from user_indexes;
select index_name, table_name, column_name, column_position from user_ind_columns;