Get a list of all the user tables (Oracle)


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

Get a list of all the user tables.


Copy this code and paste it in your HTML
  1. SELECT TABLE_NAME, comments
  2. FROM dictionary
  3. WHERE TABLE_NAME LIKE 'user_%'
  4. ORDER BY TABLE_NAME;

Report this snippet


Comments


You need to login to view comments.