leonardo 2017-08-17 13:51:19 +00:00
parent 50b09ff506
commit 42fd621ab7
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00001);
begin
execute immediate 'UPDATE FORMA_PAGO SET fecmodif = sysdate WHERE cvesistema is not null';
exception when object_exists then null;
end;