1、查询表的数目:
select count(*) from tabs
select count(*) from user_tables
2、查询用户拥有哪些表:
select * from tabs
select * from user_tables
3、管理员用户
SELECT * FROM ALL_TABLES WHERE OWNER='用户名';