28/08/2015 10:17:56 ***** ERROR DE SISTEMA: ***** ADMINISTRADOR ***** CLASE: covensol_scb_c_banco
METODO:
ERROR->
Invalid query: ERROR: no existe la relación «scb_vbanco» LINE 1: SELECT * FROM scb_vbanco ^ Whole query: SELECT * FROM scb_vbanco 28/08/2015 19:06:53 ***** ERROR DE SISTEMA: ***** ADMINISTRADOR ***** CLASE->covensol_release MÉTODO->covensol_release_INS_01_2014 ERROR->Invalid query: ERROR: no existe el lenguaje «plpgsql» HINT: Usar CREATE LANGUAGE para instalar el lenguaje en la base de datos. Whole query: create or replace function reset_sequencia(tabla text,campo text) returns varchar as $$ declare reg record; reg2 record; seq text; begin seq = tabla || '_' || campo || '_seq'; EXECUTE 'SELECT (COALESCE((SELECT '||campo||' FROM '||tabla||' ORDER BY '||campo||' DESC LIMIT 1),0)) AS valor' INTO reg; if reg.valor=0 then reg.valor = 1; end if; SELECT setval(seq,reg.valor) into reg2; return reg.valor; end; $$ LANGUAGE 'plpgsql' VOLATILE STRICT SECURITY DEFINER; 28/08/2015 19:07:13 ***** ERROR DE SISTEMA: ***** ADMINISTRADOR ***** CLASE->covensol_release MÉTODO->covensol_release_SCB_32_2015 ERROR->Invalid query: ERROR: la relación «pk_scb_banco» ya existe Whole query: CREATE TABLE scb_medidas_cheque ( codemp character varying(4) NOT NULL, codban character varying(3) NOT NULL, montox double precision DEFAULT 0, montoy double precision DEFAULT 0, destinox double precision DEFAULT 0, destinoy double precision DEFAULT 0, montoletras1x double precision DEFAULT 0, montoletras1y double precision DEFAULT 0, montoletras2x double precision DEFAULT 0, montoletras2y double precision DEFAULT 0, fechax double precision DEFAULT 0, fechay double precision DEFAULT 0, anox double precision DEFAULT 0, anoy double precision DEFAULT 0, noendosablex double precision DEFAULT 0, noendosabley double precision DEFAULT 0, caducax double precision DEFAULT 0, caducay double precision DEFAULT 0, CONSTRAINT pk_scb_banco PRIMARY KEY (codemp, codban) ) WITH ( OIDS=FALSE ); ALTER TABLE scb_medidas_cheque OWNER TO postgres;