--查询无效编译项
select owner, object_type, status, count(*)
from dba_objects
where status='INVALID'
group by owner, object_type, status
order by owner, object_type;
解决方式如下:

--查询无效编译项
select owner, object_type, status, count(*)
from dba_objects
where status='INVALID'
group by owner, object_type, status
order by owner, object_type;
解决方式如下:

6808

被折叠的 条评论
为什么被折叠?
