wilian 2017-10-26 12:25:58 +00:00
parent a43ffc50c0
commit e39a36c4b2
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 EMPRESA ADD INDEMITECUPOMFISCALREMARCACAO NUMBER(1,0)';
exception when column_exists then null;
end;