select object_type, count(*) from dba_objects where owner='SCOTT' and status='INVALID' group by object_type;
select object_type, count(*) from dba_objects where owner='SCOTT' and status='INVALID' and object_type='PROCEDURE';
show error procedure scott.procedure_invalid
select object_name, object_type, status from dba_objects where owner='SCOTT' and object_name like 'procedure_invalid'
数据泵迁移 - 无效对象
最新推荐文章于 2024-11-13 23:26:54 发布
这篇博客探讨了 Oracle 数据库中 SCOTT 用户拥有的无效对象情况。通过 SQL 查询,展示了无效对象的类型及数量,特别是聚焦于无效的存储过程。同时,提供了查询特定名为 'procedure_invalid' 的无效对象的详细信息,帮助读者理解和解决数据库中的错误问题。
摘要由CSDN通过智能技术生成