Jun 29, 2001 #1 Thiko Programmer Joined Mar 9, 2001 Messages 49 Location GB Which Data Dictionary will tell you whether there are any unique indexes created in your database? Created with a Create Unique index..... not an alter table add primary key statement..... Many Thanks. Thiko!
Which Data Dictionary will tell you whether there are any unique indexes created in your database? Created with a Create Unique index..... not an alter table add primary key statement..... Many Thanks. Thiko!
Jun 29, 2001 #2 hilbrink Programmer Joined Dec 8, 2000 Messages 38 Location NL The view DBA_INDEXES contains descriptions for all indexes in the database. The field UNIQUENESS contains the status of the index: UNIQUE or NONUNIQUE hope this was wat you meant.. Upvote 0 Downvote
The view DBA_INDEXES contains descriptions for all indexes in the database. The field UNIQUENESS contains the status of the index: UNIQUE or NONUNIQUE hope this was wat you meant..