wilian 2016-12-27 13:49:47 +00:00
parent bd7a6c7a4f
commit ec9b5975e0
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 (INDTOTALBILHETE NUMBER(1,0))';
exception when object_exists then null;
end;