GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Database

 Print  |  
Question:  Which Data Dictionary hold information about Indexes and Constraints ?



January 01, 2006 07:00:27 #1
 DIPTENDU HUI   Member Since: Visitor    Total Comments: N/A 

RE: Which Data Dictionary hold information about Index...
 

For Indexes you can use :

DBA_INDEXES

ALL_INDEXES

USER_INDEXES

For Constraint you can use :

DBA_CONSTRAINTS

ALL_CONSTRAINTS

USER_CONSTRAINTS

For index upon which table and which column you can query on:

DBA_CONS_COLUMNS

ALL_CONS_COLUMNS

USER_CONS_COLUMNS

     

 

Back To Question