create or replace trigger modify_test
after update on test
for each rowbegin
if :old.name = 'time' then
 call Modify_test(:new.value);
end if;
end;
/提示出错,PLS-00103 Encountered the symbol "Modify_test" when expecting one of the following:
 := . ( @ % ; immediate
The symbol := was substituted for "Modify_test" to continue;其中 modify_test是之前定义的一个存储过程
create or replace procedure modify_test(name varchar2) as language java name 'Test.Modify(java.lang.String)';实在找不出来这个TRIGGER的错误在哪里啊
各位大侠指出啊