fixes bug#0012147

dev: fabricio
qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@85412 d1611594-4594-4d17-8e1d-87c2c4800839
master
emerson 2018-09-14 18:05:19 +00:00
parent 12ea1bf415
commit ebbdfc8c1b
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,5 @@
declare
begin
execute immediate 'ALTER TABLE PARADA_COD_ORGAOCONCEDENTE MODIFY CODIGO VARCHAR2(9)';
exception when others then null;
end;

View File

@ -0,0 +1,7 @@
DO $$
BEGIN
ALTER TABLE PARADA_COD_ORGAOCONCEDENTE MODIFY (CODIGO VARCHAR2(9));
EXCEPTION WHEN others THEN NULL;
END
$$;