2017-10-19 13:10:25 -04:00
\timing
/*--------------------------------------------------------
0. load target import to temp table
1. create pending list
2. get unqiue pending keys
3. see which keys not already in tps.trans
4. insert pending records associated with keys that are not already in trans
2017-10-25 09:07:51 -04:00
5. insert summary to log table
2017-10-19 13:10:25 -04:00
*/---------------------------------------------------------
2017-10-11 00:17:21 -04:00
DO $$
2017-10-15 13:05:20 -04:00
DECLARE _t text;
DECLARE _c text;
2017-10-23 10:12:37 -04:00
DECLARE _path text;
DECLARE _srce text;
2017-10-11 00:17:21 -04:00
2017-10-15 13:05:20 -04:00
BEGIN
2017-10-23 10:12:37 -04:00
2017-10-25 09:07:51 -04:00
_path := 'C:\users\fleet\downloads\dc1024.csv';
_srce := 'DCARD';
2017-10-11 00:17:21 -04:00
2017-10-11 00:29:38 -04:00
----------------------------------------------------build the column list of the temp table----------------------------------------------------------------
2017-10-11 00:17:21 -04:00
SELECT
2017-10-14 01:40:26 -04:00
string_agg(quote_ident(prs.key)||' '||prs.type,','),
string_agg(quote_ident(prs.key),',')
2017-10-11 00:17:21 -04:00
INTO
2017-10-14 01:40:26 -04:00
_t,
_c
2017-10-11 00:17:21 -04:00
FROM
2017-10-25 09:07:51 -04:00
tps.srce
2017-10-11 00:17:21 -04:00
--unwrap the schema definition array
LEFT JOIN LATERAL jsonb_populate_recordset(null::tps.srce_defn_schema, defn->'schema') prs ON TRUE
2017-10-13 02:40:23 -04:00
WHERE
2017-10-23 10:12:37 -04:00
srce = _srce
2017-10-11 00:17:21 -04:00
GROUP BY
srce;
2017-10-11 00:29:38 -04:00
----------------------------------------------------add create table verbage in front of column list--------------------------------------------------------
2017-10-14 01:48:13 -04:00
_t := format('CREATE TEMP TABLE csv_i (%s, id SERIAL)', _t);
--RAISE NOTICE '%', _t;
--RAISE NOTICE '%', _c;
2017-10-11 00:29:38 -04:00
2017-10-11 00:17:21 -04:00
DROP TABLE IF EXISTS csv_i;
EXECUTE _t;
2017-10-14 01:48:13 -04:00
----------------------------------------------------do the insert-------------------------------------------------------------------------------------------
2017-10-14 01:40:26 -04:00
--the column list needs to be dynamic forcing this whole line to be dynamic
2017-10-23 10:12:37 -04:00
_t := format('COPY csv_i (%s) FROM %L WITH (HEADER TRUE,DELIMITER '','', FORMAT CSV, ENCODING ''SQL_ASCII'',QUOTE ''"'');',_c,_path);
2017-10-14 01:48:13 -04:00
--RAISE NOTICE '%', _t;
EXECUTE _t;
2017-10-13 02:40:23 -04:00
2017-10-25 09:07:51 -04:00
WITH
2017-10-24 17:37:20 -04:00
2017-10-25 09:07:51 -04:00
-------------extract the limiter fields to one row per source----------------------------------
2017-10-24 17:37:20 -04:00
2017-10-25 09:07:51 -04:00
ext AS (
SELECT
srce
,defn->'unique_constraint'->>'fields'
,ARRAY(SELECT ae.e::text[] FROM jsonb_array_elements_text(defn->'unique_constraint'->'fields') ae(e)) text_array
FROM
tps.srce
WHERE
srce = _srce
--add where clause for targeted source
)
2017-10-23 10:12:37 -04:00
-------------for each imported row in the COPY table, genereate the json rec, and a column for the json key specified in the srce.defn-----------
2017-10-25 09:07:51 -04:00
,pending_list AS (
2017-10-23 10:12:37 -04:00
SELECT
2017-10-25 09:07:51 -04:00
jsonb_extract(
row_to_json(i)::jsonb
,ext.text_array
2017-10-23 10:12:37 -04:00
) json_key,
row_to_json(i)::JSONB rec,
srce,
--ae.rn,
id
FROM
csv_i i
2017-10-25 09:07:51 -04:00
INNER JOIN ext ON
ext.srce = _srce
2017-10-23 10:12:37 -04:00
ORDER BY
id ASC
)
-----------create a unique list of keys from staged rows------------------------------------------------------------------------------------------
, pending_keys AS (
SELECT DISTINCT
json_key
FROM
pending_list
)
2017-10-25 09:07:51 -04:00
-----------list of keys already loaded to tps-----------------------------------------------------------------------------------------------------
, matched_keys AS (
SELECT DISTINCT
k.json_key
FROM
pending_keys k
INNER JOIN tps.trans t ON
t.rec @> k.json_key
)
2017-10-23 10:12:37 -04:00
-----------return unique keys that are not already in tps.trans-----------------------------------------------------------------------------------
, unmatched_keys AS (
2017-10-18 00:55:00 -04:00
SELECT
2017-10-23 10:12:37 -04:00
json_key
2017-10-18 00:55:00 -04:00
FROM
2017-10-23 10:12:37 -04:00
pending_keys
2017-10-19 13:10:25 -04:00
2017-10-23 10:12:37 -04:00
EXCEPT
2017-10-19 13:10:25 -04:00
2017-10-25 09:07:51 -04:00
SELECT
json_key
2017-10-23 10:12:37 -04:00
FROM
2017-10-25 09:07:51 -04:00
matched_keys
2017-10-23 10:12:37 -04:00
)
-----------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 *
)
--------summarize records not inserted-------------------+------------------------------------------------------------------------------------------------
2017-10-19 13:10:25 -04:00
2017-10-25 09:07:51 -04:00
INSERT INTO
tps.trans_log (info)
2017-10-18 14:10:07 -04:00
SELECT
2017-10-25 09:07:51 -04:00
JSONB_BUILD_OBJECT('time_stamp',CURRENT_TIMESTAMP)
||JSONB_BUILD_OBJECT('srce',_srce)
||JSONB_BUILD_OBJECT('path',_path)
||JSONB_BUILD_OBJECT('not_inserted',
(
SELECT
jsonb_agg(json_key)
FROM
matched_keys
)
)
||JSONB_BUILD_OBJECT('inserted',
(
SELECT
jsonb_agg(json_key)
FROM
unmatched_keys
)
);
END
$$;