wilian 2018-02-05 20:07:47 +00:00
parent 51b3206ac6
commit 62a1ccc144
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 ORGAO_CONCEDENTE ADD INDMULTATODASREMARCACOES NUMBER(1)';
exception when column_exists then null;
end;