DeepDiverMom
Programmer
I'm a MySQL newbie. I have a good deal of Oracle DBA experience. In Oracle, if I issue this SELECT:
SELECT object_name
from DBA_OBJECTS
where owner = 'SYS'
and object_name like 'DBA%';
...I get a listing of such helpful DBA views as:
DBA_USERS (all installation users)
DBA_TABLES (all tables no matter owner/schema)
DBA_VIEWS (all views no matter owner/schema)
et cetera
What query can I issue in MySQL that gives me the equivalent listing of data dictionary views for MySQL?
SELECT object_name
from DBA_OBJECTS
where owner = 'SYS'
and object_name like 'DBA%';
...I get a listing of such helpful DBA views as:
DBA_USERS (all installation users)
DBA_TABLES (all tables no matter owner/schema)
DBA_VIEWS (all views no matter owner/schema)
et cetera
What query can I issue in MySQL that gives me the equivalent listing of data dictionary views for MySQL?