1.查看某用户下所有对象的信息:

SELECT owner, object_type, status, COUNT(*) count# 
FROM all_objects 
where owner='xxx'
GROUP BY owner, object_type, status
order by 2; 
View Code

相关文章: