Criar serviço para trazer informações para login Agência Digital

bug#16383
dev:trevezani
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@98227 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2019-10-11 19:59:15 +00:00
parent e30a38a211
commit 832ee1b63f
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE ESTACION ADD (IMEI VARCHAR(20))';
exception when object_exists then null;
end;