вторник, 24 января 2012 г.

Oracle: Список индексов и ссылок (констрейнты) таблицы

Список индексов:
select index_name from all_indexes where table_name='TABLE_NAME' and owner='OWNER_NAME' order by 1;

Список внешних ключей:
select constraint_name from all_constraints where table_name='TABLE_NAME' and owner='OWNER_NAME' order by 1;

Комментариев нет:

Архив