Oracle PL/SQL/System Tables Views/all indexes — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:01, 26 мая 2010
ALL_INDEXES view contains information about the indexes
SQL>
SQL> select table_name, index_name, uniqueness from all_indexes
2 where table_name = "COUNTRIES";
TABLE_NAME INDEX_NAME UNIQUENES
------------------------------ ------------------------------ ---------
COUNTRIES COUNTRY_C_ID_PK UNIQUE
SQL>
SQL>