Find Table Name index by table comments


/ Published in: SQL
Save to your folder(s)

Find Table Name indexing by table comments


Copy this code and paste it in your HTML
  1. SELECT TABLE_NAME, COMMENTS
  2. FROM USER_TAB_COMMENTS
  3. WHERE UPPER(COMMENTS) LIKE '%SOME%TEXT%';

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.