A Journal Through My Activities, Thoughts, and Notes
#oracle: how to find a table's name if you only know part of its name?

SELECT owner, table_name 
FROM all_tables
WHERE table_name LIKE '%KYC%';
 
 
Back to Top