1.查看某用户下所有对象的信息: SELECT owner, object_type, status, COUNT(*) count# FROM all_objects where owner='xxx' GROUP BY owner, object_type, status order by ; 2.查看表行数(多个表)(需先分析表): select 'analyze table '|| table_name||' compute statistics;' from user_tables;…