SELECT *FROM ALL_CONS_COLUMNS A JOIN ALL_CONSTRAINTS C ON A.CONSTRAINT_NAME = C.CONSTRAINT_NAME WHERE C.TABLE_NAME = 'RSC' AND C.CONSTRAINT_TYPE = 'R'; --To get Table PK and indexes. --------------------------------- SELECT USER_TABLES.TABLE_NAME, USER_INDEXES.INDEX_NAME FROM USER_TABLES JOIN USER_INDEXES ON USER_INDEXES.TABLE_NAME = USER_TABLES.TABLE_NAME WHERE USER_TABLES.TABLE_NAME = 'CERT_TASK_ACTION' ORDER BY USER_TABLES.TABLE_NAME, USER_INDEXES.INDEX_NAME; SELECT USER_TABLES.TABLE_NAME, USER_INDEXES.INDEX_NAME, USER_IND_COLUMNS.COLUMN_NAME FROM USER_TABLES JOIN USER_INDEXES ON USER_INDEXES.TABLE_NAME = USER_TABLES.TABLE_NAME JOIN USER_IND_COLUMNS ON USER_INDEXES.INDEX_NAME = USER_IND_COLUMNS.INDEX_NAME WHERE USER_TABLES.TABLE_NAME = 'CERT_TASK_ACTION' ORDER BY USER_TABLES.TABLE_NAME, USER_INDEXES.INDEX_NAME;
Oracle Identity Manager(OIM) is the Provisioning Solution from oracle. This page contains an index with references to all OIM related posts in the oracle identity manager Academy blog. The posts included herein are intended to provide oracle identity management customers and developers with technical information about best practices for implementing OIM based solutions.
SQL Queries to get Constraints and Indexes from OIM Tables
Subscribe to:
Post Comments (Atom)
-
Connection Related API's : OIM DB Connection/ Data Source connection OIMClient API / OIMConnection API OIM Platform API to getSer...
-
Error : Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.springframewor...
-
In this post, we set the middle name as “MiddleName” if user does not provide middle name during user create operation. Below are high...
No comments:
Post a Comment