如何编译 ORACLE 触发器
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/17653993/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How do I compile an ORACLE trigger
提问by user1987442
I have an invalid ORACLE trigger.
我有一个无效的 ORACLE 触发器。
How can I compile it with SQL*PLUS?
如何使用 SQL*PLUS 编译它?
How can I see the status with SQL*PLUS?
如何使用 SQL*PLUS 查看状态?
回答by Ed Gibbs
You can recompile using ALTER TRIGGER
:
您可以使用ALTER TRIGGER
以下命令重新编译:
ALTER TRIGGER myTrigger COMPILE
If SQLPlus reports Trigger compiled with errors
(or something similar), just type SHOW ERRORS
for more information.
如果 SQLPlus 报告Trigger compiled with errors
(或类似的),只需键入SHOW ERRORS
以获取更多信息。