PL / SQLのvarchar2変数がトリガーの10文字のようであることを確認するにはどうすればよいですか?そして、それは自動的に挿入を続行しますか?
--trigger that checks that number of characters are 10, doesnt work
create or replace trigger checkthings
before insert or update
on tblTenChars
declare
noGood exception;
begin
if :new.justTenVars(size) <> 10 then --this is not the way?
raise noGood;
end if;
exception
when noGood then
raise_application_error(-20008, 'Wrong not 10 characters');
end;