bug#10801
dev:fabio qua:renato git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@80720 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
1c6da1633f
commit
b9afdd2e32
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CONEXION_DESCUENTO ADD DESCUENTO_TASAEMBARQUE NUMBER(7,2)';
|
||||
exception when column_exists then null;
|
||||
end;
|
|
@ -0,0 +1,8 @@
|
|||
declare
|
||||
dup_val_on_index exception;
|
||||
pragma exception_init (dup_val_on_index , -00001);
|
||||
begin
|
||||
execute immediate 'insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
|
||||
(funcion_sistema_seq.nextval,1,''RELATORIOS > RELATORIOS FINANCEIRO > VENDAS DE CONEXAO'',''COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOVENDASCONEXAO'',1,sysdate,1)';
|
||||
exception when dup_val_on_index then null;
|
||||
end;
|
Loading…
Reference in New Issue