fixes bug#0014161

dev: thiago
qua: marcelo
Correção de erros:
ORA-12899: valor muito grande para a coluna "VTABOL"."FECHAMENTO_DEPOSITO"."NUMDEPOSITO" (real: 21, máximo: 16)
java.lang.NullPointerException
	at com.rjconsultores.ventaboletos.service.MetodosComuns.verificaCategoriaLiberadaVenda(MetodosComuns.java:9401) [:]


git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@92586 d1611594-4594-4d17-8e1d-87c2c4800839
master
emerson 2019-04-30 13:02:02 +00:00
parent f718536b00
commit d13bca5066
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'alter table fechamento_deposito modify (numdeposito varchar2(22))';
end;

View File

@ -0,0 +1 @@
alter table fechamento_deposito alter column numdeposito type varchar(22);