Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
accept tab prompt "Enter part (or all) of a table name to locate: "
SELECT owner, table_name
from all_tables
where table_name like upper('%&tab%')
order by 1,2
/
SQL> @tabfinder
Enter part (or all) of a table name to locate: s_emp
OWNER TABLE_NAME
------------------------------ ----------
DHUNT S_EMP
SUMMIT S_EMP
TEST S_EMP
TEST S_EMP2
WAYYADA S_EMP
YADA S_EMP
YADA2 S_EMP
YADA4 S_EMP
8 rows selected.