sure....in SQLPlus I want to access certain data dictionary ie: user_tabkes or constraint_name etc. basically to verifiy what I'm doing or to verify information on tables, users, constraints on other tables.
You can use the DICTIONARY or DICT view to know all data dictionary views available in your database. There are definitions of each view available there.
From your sqlplus,
select *
from DICT
where table_name like 'USER_%';
I just hope this is what you are looking for.
Robbie
"The rule is, not to besiege walled cities if it can possibly be avoided" -- Art of War
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.