fabio 2017-12-12 11:25:22 +00:00
parent 037a2be521
commit b11ae2d0d2
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 EMPRESA ADD ( INDIMPRIMECUPEMBVENDAMANUAL NUMBER(1, 0) DEFAULT 0 NOT NULL )';
exception when object_exists then null;
end;