Oracle DB&SQL Developer:“错误报告:执行完成并带有警告” – 我如何*看到*警告?

前端之家收集整理的这篇文章主要介绍了Oracle DB&SQL Developer:“错误报告:执行完成并带有警告” – 我如何*看到*警告?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在建立一个本地oracle(11g)数据库 – 我们已经运行的另一个数据库的克隆.我在sql Developer中运行一堆生成的PL / sql命令.

我得到的输出

Error starting at line x in command: 
*long-ass sql statement here* 
Error report: 
sql Command: force view "someViewName"
Failed: Warning: execution completed with warning

如何阅读在不修改脚本的情况下生成的警告?

当我在这个命令后立即使用show错误,我得到的输出没有错误

如果显示错误不给你任何东西:
select line,position,text
from user_errors
where type = 'VIEW'
and name = 'someViewName'
order by sequence;

假设你是在自己的模式下创建它的;如果不是,你可以看看all_errors而不是.

列为in the documentation

ALL_ERRORS describes the current errors on the stored objects accessible to the current user.
DBA_ERRORS describes the current errors on all stored objects in the database.
USER_ERRORS describes the current errors on the stored objects owned by the current user. This view does not display the OWNER column.

原文链接:https://www.f2er.com/oracle/204883.html

猜你在找的Oracle相关文章