wilian 2017-05-04 18:50:35 +00:00
parent cde0657d59
commit 2b6dbf263f
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE OCD_PARAM ADD INDSEMPREGERARAPAGAR NUMBER(1,0)';
exception when object_exists then null;
end;