push inserts into do block so they can consume local variables, need to setup log inserts
This commit is contained in:
parent
b3775210b5
commit
51fbec1244
217
srce.pgsql
217
srce.pgsql
@ -15,8 +15,13 @@ DO $$
|
|||||||
|
|
||||||
DECLARE _t text;
|
DECLARE _t text;
|
||||||
DECLARE _c text;
|
DECLARE _c text;
|
||||||
|
DECLARE _path text;
|
||||||
|
DECLARE _srce text;
|
||||||
|
|
||||||
BEGIN
|
BEGIN
|
||||||
|
|
||||||
|
_path := 'C:\users\ptrowbridge\downloads\lon_loan_ledgerbal.csv';
|
||||||
|
_srce := 'PNCO';
|
||||||
|
|
||||||
----------------------------------------------------build the column list of the temp table----------------------------------------------------------------
|
----------------------------------------------------build the column list of the temp table----------------------------------------------------------------
|
||||||
|
|
||||||
@ -31,7 +36,7 @@ BEGIN
|
|||||||
--unwrap the schema definition array
|
--unwrap the schema definition array
|
||||||
LEFT JOIN LATERAL jsonb_populate_recordset(null::tps.srce_defn_schema, defn->'schema') prs ON TRUE
|
LEFT JOIN LATERAL jsonb_populate_recordset(null::tps.srce_defn_schema, defn->'schema') prs ON TRUE
|
||||||
WHERE
|
WHERE
|
||||||
srce = 'PNCC'
|
srce = _srce
|
||||||
GROUP BY
|
GROUP BY
|
||||||
srce;
|
srce;
|
||||||
|
|
||||||
@ -48,122 +53,126 @@ BEGIN
|
|||||||
----------------------------------------------------do the insert-------------------------------------------------------------------------------------------
|
----------------------------------------------------do the insert-------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
--the column list needs to be dynamic forcing this whole line to be dynamic
|
--the column list needs to be dynamic forcing this whole line to be dynamic
|
||||||
_t := format('COPY csv_i (%s) FROM ''C:\Users\ptrowbridge\downloads\transsearchcsv.csv'' WITH (HEADER TRUE,DELIMITER '','', FORMAT CSV, ENCODING ''SQL_ASCII'',QUOTE ''"'');',_c);
|
_t := format('COPY csv_i (%s) FROM %L WITH (HEADER TRUE,DELIMITER '','', FORMAT CSV, ENCODING ''SQL_ASCII'',QUOTE ''"'');',_c,_path);
|
||||||
|
|
||||||
--RAISE NOTICE '%', _t;
|
--RAISE NOTICE '%', _t;
|
||||||
|
|
||||||
EXECUTE _t;
|
EXECUTE _t;
|
||||||
|
|
||||||
|
WITH
|
||||||
|
|
||||||
END
|
-------------for each imported row in the COPY table, genereate the json rec, and a column for the json key specified in the srce.defn-----------
|
||||||
$$;
|
|
||||||
|
|
||||||
|
pending_list AS (
|
||||||
|
SELECT
|
||||||
|
---creates a key value pair and then aggregates rows of key value pairs
|
||||||
|
jsonb_object_agg(
|
||||||
|
(ae.e::text[])[1], --the key name
|
||||||
|
(row_to_json(i)::jsonb) #> ae.e::text[] --get the target value from the key from the csv row that has been converted to json
|
||||||
|
) json_key,
|
||||||
|
row_to_json(i)::JSONB rec,
|
||||||
|
srce,
|
||||||
|
--ae.rn,
|
||||||
|
id
|
||||||
|
FROM
|
||||||
|
csv_i i
|
||||||
|
INNER JOIN tps.srce s ON
|
||||||
|
s.srce = _srce
|
||||||
|
LEFT JOIN LATERAL JSONB_ARRAY_ELEMENTS_TEXT(defn->'unique_constraint'->'fields') WITH ORDINALITY ae(e, rn) ON TRUE
|
||||||
|
GROUP BY
|
||||||
|
i.*,
|
||||||
|
srce,
|
||||||
|
id
|
||||||
|
ORDER BY
|
||||||
|
id ASC
|
||||||
|
)
|
||||||
|
|
||||||
WITH
|
-----------create a unique list of keys from staged rows------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
-------------for each imported row in the COPY table, genereate the json rec, and a column for the json key specified in the srce.defn-----------
|
, pending_keys AS (
|
||||||
|
SELECT DISTINCT
|
||||||
|
json_key
|
||||||
|
FROM
|
||||||
|
pending_list
|
||||||
|
)
|
||||||
|
|
||||||
pending_list AS (
|
-----------return unique keys that are not already in tps.trans-----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
, unmatched_keys AS (
|
||||||
SELECT
|
SELECT
|
||||||
---creates a key value pair and then aggregates rows of key value pairs
|
json_key
|
||||||
jsonb_object_agg(
|
|
||||||
(ae.e::text[])[1], --the key name
|
|
||||||
(row_to_json(i)::jsonb) #> ae.e::text[] --get the target value from the key from the csv row that has been converted to json
|
|
||||||
) json_key,
|
|
||||||
row_to_json(i)::JSONB rec,
|
|
||||||
srce,
|
|
||||||
--ae.rn,
|
|
||||||
id
|
|
||||||
FROM
|
FROM
|
||||||
csv_i i
|
pending_keys
|
||||||
|
|
||||||
|
EXCEPT
|
||||||
|
|
||||||
|
SELECT DISTINCT
|
||||||
|
k.json_key
|
||||||
|
FROM
|
||||||
|
pending_keys k
|
||||||
|
INNER JOIN tps.trans t ON
|
||||||
|
t.rec @> k.json_key
|
||||||
|
)
|
||||||
|
|
||||||
|
-----------insert pending rows that have key with no trans match-----------------------------------------------------------------------------------
|
||||||
|
--need to look into mapping the transactions prior to loading
|
||||||
|
|
||||||
|
, inserted AS (
|
||||||
|
INSERT INTO
|
||||||
|
tps.trans (srce, rec)
|
||||||
|
SELECT
|
||||||
|
pl.srce
|
||||||
|
,pl.rec
|
||||||
|
FROM
|
||||||
|
pending_list pl
|
||||||
|
INNER JOIN unmatched_keys u ON
|
||||||
|
u.json_key = pl.json_key
|
||||||
|
ORDER BY
|
||||||
|
pl.id ASC
|
||||||
|
----this conflict is only if an exact duplicate rec json happens, which will be rejected
|
||||||
|
----therefore, records may not be inserted due to ay matches with certain json fields, or if the entire json is a duplicate, reason is not specified
|
||||||
|
RETURNING *
|
||||||
|
)
|
||||||
|
|
||||||
|
-----------list of records not inserted--------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
, not_inserted AS (
|
||||||
|
SELECT
|
||||||
|
srce
|
||||||
|
,rec
|
||||||
|
FROM
|
||||||
|
pending_list
|
||||||
|
|
||||||
|
EXCEPT ALL
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
srce
|
||||||
|
,rec
|
||||||
|
FROM
|
||||||
|
inserted
|
||||||
|
)
|
||||||
|
|
||||||
|
--------insert to log-------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
--below select should be loaded to the log table
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------summarize records not inserted-------------------+------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
t.srce
|
||||||
|
,(ae.e::text[])[1] unq_constr
|
||||||
|
,MIN(rec #>> ae.e::text[]) min_text
|
||||||
|
,MAX(rec #>> ae.e::text[]) max_text
|
||||||
|
,JSONB_PRETTY(JSON_AGG(rec #> ae.e::text[] ORDER BY rec #>> ae.e::text[])::JSONB)
|
||||||
|
FROM
|
||||||
|
not_inserted t
|
||||||
INNER JOIN tps.srce s ON
|
INNER JOIN tps.srce s ON
|
||||||
s.srce = 'PNCC'
|
s.srce = t.srce
|
||||||
LEFT JOIN LATERAL JSONB_ARRAY_ELEMENTS_TEXT(defn->'unique_constraint'->'fields') WITH ORDINALITY ae(e, rn) ON TRUE
|
LEFT JOIN LATERAL JSONB_ARRAY_ELEMENTS_TEXT(defn->'unique_constraint'->'fields') WITH ORDINALITY ae(e, rn) ON TRUE
|
||||||
GROUP BY
|
GROUP BY
|
||||||
i.*,
|
t.srce
|
||||||
srce,
|
,(ae.e::text[])[1];
|
||||||
id
|
|
||||||
ORDER BY
|
|
||||||
id ASC
|
|
||||||
)
|
|
||||||
|
|
||||||
-----------create a unique list of keys from staged rows------------------------------------------------------------------------------------------
|
END
|
||||||
|
$$;
|
||||||
, pending_keys AS (
|
|
||||||
SELECT DISTINCT
|
|
||||||
json_key
|
|
||||||
FROM
|
|
||||||
pending_list
|
|
||||||
)
|
|
||||||
|
|
||||||
-----------return unique keys that are not already in tps.trans-----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
, unmatched_keys AS (
|
|
||||||
SELECT
|
|
||||||
json_key
|
|
||||||
FROM
|
|
||||||
pending_keys
|
|
||||||
|
|
||||||
EXCEPT
|
|
||||||
|
|
||||||
SELECT DISTINCT
|
|
||||||
k.json_key
|
|
||||||
FROM
|
|
||||||
pending_keys k
|
|
||||||
INNER JOIN tps.trans t ON
|
|
||||||
t.rec @> k.json_key
|
|
||||||
)
|
|
||||||
|
|
||||||
-----------insert pending rows that have key with no trans match-----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
, inserted AS (
|
|
||||||
INSERT INTO
|
|
||||||
tps.trans (srce, rec)
|
|
||||||
SELECT
|
|
||||||
pl.srce
|
|
||||||
,pl.rec
|
|
||||||
FROM
|
|
||||||
pending_list pl
|
|
||||||
INNER JOIN unmatched_keys u ON
|
|
||||||
u.json_key = pl.json_key
|
|
||||||
ORDER BY
|
|
||||||
pl.id ASC
|
|
||||||
----this conflict is only if an exact duplicate rec json happens, which will be rejected
|
|
||||||
----therefore, records may not be inserted due to ay matches with certain json fields, or if the entire json is a duplicate, reason is not specified
|
|
||||||
RETURNING *
|
|
||||||
)
|
|
||||||
|
|
||||||
-----------list of records not inserted--------------------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
, not_inserted AS (
|
|
||||||
SELECT
|
|
||||||
srce
|
|
||||||
,rec
|
|
||||||
FROM
|
|
||||||
pending_list
|
|
||||||
|
|
||||||
EXCEPT ALL
|
|
||||||
|
|
||||||
SELECT
|
|
||||||
srce
|
|
||||||
,rec
|
|
||||||
FROM
|
|
||||||
inserted
|
|
||||||
)
|
|
||||||
|
|
||||||
--------summarize records not inserted-------------------+------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
SELECT
|
|
||||||
t.srce
|
|
||||||
,(ae.e::text[])[1] unq_constr
|
|
||||||
,MIN(rec #>> ae.e::text[]) min_text
|
|
||||||
,MAX(rec #>> ae.e::text[]) max_text
|
|
||||||
,JSONB_PRETTY(JSON_AGG(rec #> ae.e::text[] ORDER BY rec #>> ae.e::text[])::JSONB)
|
|
||||||
FROM
|
|
||||||
not_inserted t
|
|
||||||
INNER JOIN tps.srce s ON
|
|
||||||
s.srce = t.srce
|
|
||||||
LEFT JOIN LATERAL JSONB_ARRAY_ELEMENTS_TEXT(defn->'unique_constraint'->'fields') WITH ORDINALITY ae(e, rn) ON TRUE
|
|
||||||
GROUP BY
|
|
||||||
t.srce
|
|
||||||
,(ae.e::text[])[1];
|
|
Loading…
Reference in New Issue
Block a user