如何在sql Developer中查看编译器日志?

发布于 2024-09-25 06:26:54 字数 105 浏览 6 评论 0原文

我收到此错误:

错误:检查编译器日志

如何在 Oracle SQL Developer 中查看编译器日志?

I get this error:

Errors: check compiler log

How can I see compiler log in Oracle SQL Developer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

魔法唧唧 2024-10-02 06:26:54

control-shift-L 应该会为您打开日志。默认情况下,这将是消息日志,但如果您创建了导致错误的项目,则会显示编译器日志(对我来说,该框显示在左下角)。

如果消息日志是唯一显示的日志,只需重新执行导致失败的项目,编译器日志就会显示,

例如,按 Control-shift-L
然后执行此命令

CREATE OR REPLACE FUNCTION TEST123() IS
BEGIN
VAR := 2;
end TEST123;

,您将看到消息“错误(1,18):PLS-00103:遇到符号“)”当期望以下之一:当前删除之前存在”

(您也可以在“查看--日志”)

还有一件事,如果您在(函数 || 包 || 过程)中遇到问题,如果您通过 SQL Developer 界面进行编码(通过在连接选项卡上找到有问题的对象并对其进行编辑,则会出现错误将立即显示(有时甚至带有下划线)

control-shift-L should open the log(s) for you. this will by default be the messages log, but if you create the item that is creating the error the Compiler Log will show up (for me the box shows up in the bottom middle left).

if the messages log is the only log that shows up, simply re-execute the item that was causing the failure and the compiler log will show up

for instance, hit Control-shift-L
then execute this

CREATE OR REPLACE FUNCTION TEST123() IS
BEGIN
VAR := 2;
end TEST123;

and you will see the message "Error(1,18): PLS-00103: Encountered the symbol ")" when expecting one of the following: current delete exists prior "

(You can also see this in "View--Log")

One more thing, if you are having a problem with a (function || package || procedure) if you do the coding via the SQL Developer interface (by finding the object in question on the connections tab and editing it the error will be immediately displayed (and even underlined at times)

硪扪都還晓 2024-10-02 06:26:54

我也可以使用

显示错误;

在sql工作表中。

I can also use

show errors;

In sql worksheet.

じее 2024-10-02 06:26:54

要在 SQL Developer 中查看您的日志,请按:

CTRL+SHIFT + L(或 CTRL< /kbd> + CMD + L(在 macOS 上)

查看->日志

或者通过使用mysql查询

显示错误;

To see your log in SQL Developer then press:

CTRL+SHIFT + L (or CTRL + CMD + L on macOS)

or

View -> Log

or by using mysql query

show errors;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文