wilian 2017-12-05 18:47:39 +00:00
parent 8e87d0c45e
commit 2dda95380d
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE BOLETO ADD (INTEGRADOTOTVS NUMBER(1,0))';
exception when column_exists then null;
end;