oracle - Extract Table(s) having name in numbers -
i using oracle developer , db have 150+ tables having different namings want extract tables having names
tbl_1234 tbl_22 tbl_45 tbl_719
all tables naming convention " table name , underscore , number "
pleaseee me on
try following query:
select table_name user_tables regexp_like (table_name, '_[0-9]+$'); and can use, of course, all_tables or dba_tables view, if have approriate rights
Comments
Post a Comment