fix bug #8360 - Corrigido o processo de impressão.
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@65924 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
9c97ccb518
commit
3074df928f
|
@ -1,3 +1,7 @@
|
||||||
|
declare
|
||||||
|
object_exists exception;
|
||||||
|
pragma exception_init (object_exists , -00955);
|
||||||
|
begin
|
||||||
CREATE TABLE
|
CREATE TABLE
|
||||||
EMBARCADA_LIMITES
|
EMBARCADA_LIMITES
|
||||||
(
|
(
|
||||||
|
@ -10,6 +14,10 @@ CREATE TABLE
|
||||||
AVISO_DIV NUMBER(15) NOT NULL,
|
AVISO_DIV NUMBER(15) NOT NULL,
|
||||||
AVISO_DIAS NUMBER(15) NOT NULL
|
AVISO_DIAS NUMBER(15) NOT NULL
|
||||||
);
|
);
|
||||||
|
exception when object_exists then null;
|
||||||
|
end;
|
||||||
|
begin
|
||||||
CREATE SEQUENCE EMBARCADA_LIMITES_SEQ INCREMENT BY 1 START WITH 1 MAXVALUE 9999999999999999999999999999
|
CREATE SEQUENCE EMBARCADA_LIMITES_SEQ INCREMENT BY 1 START WITH 1 MAXVALUE 9999999999999999999999999999
|
||||||
MINVALUE 1 NOCYCLE CACHE 20 NOORDER;
|
MINVALUE 1 NOCYCLE CACHE 20 NOORDER;
|
||||||
|
exception when object_exists then null;
|
||||||
|
end;
|
|
@ -0,0 +1,7 @@
|
||||||
|
declare
|
||||||
|
object_exists exception;
|
||||||
|
pragma exception_init (object_exists , -00955);
|
||||||
|
begin
|
||||||
|
execute immediate 'ALTER TABLE EMBARCADA_SINCRONISMO ADD (FECHADO NUMBER(1))';
|
||||||
|
exception when object_exists then null;
|
||||||
|
end;
|
|
@ -0,0 +1,7 @@
|
||||||
|
declare
|
||||||
|
object_exists exception;
|
||||||
|
pragma exception_init (object_exists , -00955);
|
||||||
|
begin
|
||||||
|
execute immediate 'ALTER TABLE VENDA_EMBARCADA ADD (boletoId NUMBER(20))';
|
||||||
|
exception when object_exists then null;
|
||||||
|
end;
|
Loading…
Reference in New Issue