|
declare
|
|
object_exists exception;
|
|
pragma exception_init (object_exists , -00001);
|
|
begin
|
|
execute immediate 'UPDATE FORMA_PAGO SET DESCPAGO = ''GERACAO OCD'', CVEPAGO = ''GO'', FECMODIF = sysdate WHERE FORMAPAGO_ID = 35';
|
|
exception when object_exists then null;
|
|
end; |