git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@72576 d1611594-4594-4d17-8e1d-87c2c4800839
master
leonardo 2017-08-11 20:35:57 +00:00
parent dbfc1be1da
commit 7c558acae2
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'Insert into FORMA_PAGO values (38, ''VOUCHER ROD'', null,1,sysdate,1, null,''VR'',null, 0,null)';
exception when dup_val_on_index then null;
end;