11 lines
323 B
SQL
11 lines
323 B
SQL
declare
|
|
begin
|
|
execute immediate 'ALTER TABLE AG_CONTAS_PAGAR MODIFY (CENTRORESULTADOS VARCHAR2(20 BYTE))';
|
|
exception when others then null;
|
|
end;
|
|
/
|
|
declare
|
|
begin
|
|
execute immediate 'ALTER TABLE AG_CONTAS_RECEBER MODIFY (CENTRORESULTADOS VARCHAR2(20 BYTE))';
|
|
exception when others then null;
|
|
end; |