创建“而不是”时出现编译错误视图的触发器

发布于 2024-10-05 02:04:10 字数 523 浏览 1 评论 0原文

我为一个简单视图创建了一个“而不是”触发器,该视图仅在表上执行 select * 操作,并且创建了一个不执行任何操作的触发器(我想最大程度地减少问题):

create or replace view tmp(id, nazwa, nip, adres, zalega, punkty) as
select * from klient

create or replace trigger tmp_trg
instead of insert
on tmp
for each row
begin

end;

视图已创建。 然后,当我想要声明此触发器时,sql开发人员返回错误:

错误(8,1):PLS-00103:在期望以下其中一项时遇到符号“END”:begin case声明goto的退出if循环mod null pragma raise return select update while with '一个标识符' '双引号分隔标识符' '绑定变量' <<关闭当前删除获取锁定插入打开回滚保存点设置sql执行提交forall合并管道

I've created an "instead of" trigger for a simple view that only does select * on a table and a trigger that does nothing (I wanted to minimize the problem):

create or replace view tmp(id, nazwa, nip, adres, zalega, punkty) as
select * from klient

create or replace trigger tmp_trg
instead of insert
on tmp
for each row
begin

end;

The view is created.
Then when I want do declare this trigger sql developer returns error:

Error(8,1): PLS-00103: Encountered the symbol "END" when expecting one of the following: begin case declare exit for goto if loop mod null pragma raise return select update while with 'an identifier' 'a double-quoted delimited-identifier' 'a bind variable' << close current delete fetch lock insert open rollback savepoint set sql execute commit forall merge pipe

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

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

发布评论

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

评论(2

肩上的翅膀 2024-10-12 02:04:10

只需添加“null;”在开始和结束之间。

just add "null;" between the begin and the end.

鲸落 2024-10-12 02:04:10

一个不执行任何操作的触发器(我想最小化问题):

我不确定我是否理解为什么你需要一个触发器,如果​​它什么都不做?

要回答,触发器代码块中没有有效的 PL/SQL 语句,请添加 NULL 使其成为有效块并且不执行任何操作。

create or replace trigger tmp_trg
instead of insert
on tmp
for each row
begin
NULL;
end;

a trigger that does nothing (I wanted to minimize the problem):

I'm not sure I understand why you need a trigger if it does nothing ?

To answer, there isn't a valid PL/SQL statement in your trigger code block, add a NULL to make it a valid block and have no action.

create or replace trigger tmp_trg
instead of insert
on tmp
for each row
begin
NULL;
end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文