julio 2017-08-25 18:34:01 +00:00
parent 9082e174e5
commit b14527f574
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
declare
object_exists exception;
pragma exception_init (object_exists , -02260);
begin
execute immediate 'ALTER TABLE FOLIO_CONSUMO_RMD ADD (
VALORCONTABIL NUMBER(16,2),
BASECALCULO NUMBER(16,2),
ALIQUOTA NUMBER(16,2),
ISENTOS NUMBER(16,2),
OUTROS NUMBER(16,2),
ICMS NUMBER(16,2))';
exception when object_exists then null;
end;