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

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -