Go to file
2018-03-10 01:58:43 -05:00
deploy push constraint to seperate column 2018-03-10 01:58:43 -05:00
functions push constraint to seperate column 2018-03-10 01:58:43 -05:00
reports list out columns 2018-03-03 11:52:34 -05:00
sample_discovercard create function to insert many updates from one json 2018-03-03 11:47:31 -05:00
sample_google_api add scenario to test storing json, exmaple google api 2018-03-02 01:01:46 -05:00
templates contrain element defined, need to determine where to put it on insert 2018-03-08 01:50:57 -05:00
triggers initial trigger work 2018-03-04 23:57:59 -05:00
.gitignore add to ignore 2018-02-27 22:35:27 -05:00
LICENSE add event record example 2017-07-24 23:13:34 -04:00
readme.md add interaction details 2018-03-06 00:28:37 -05:00

Generic Data Transformation Tool

The goal is to:

  1. house external data and prevent duplication on insert
  2. facilitate regular exression operations to extract meaningful data
  3. be able to reference it from outside sources (no action required) and maintain reference to original data

It is well suited for data from outside systems that

  • requires complex transformation (parsing and mapping)
  • original data is retained for reference

use cases:

  • on-going bank feeds
  • jumbled product lists
  • storing api results

The data is converted to json by the importing program and inserted to the database. Regex expressions are applied to specified json components and the results can be mapped to other values.

Major Interactions

  • Source Definitions (Maint/Inquire)
  • Regex Instructions (Maint/Inquire)
  • Cross Reference List (Maint/Inquire)
  • Run Import (Run Job)

Interaction Details

  • Source Definitions (Maint/Inquire)

    • display a list of existing sources with display detials/edit options
    • create new option
    • underlying function is tps.srce_set(_name text, _defn jsonb)
  • Regex Instructions (Maint/Inquire)

    • display a list of existing instruction sets with display details/edit options
    • create new option
    • underlying function is tps.srce_map_def_set(_srce text, _map text, _defn jsonb, _seq int) which takes a source "code" and a json
  • Cross Reference List (Maint/Inquire)

    • first step is to populate a list of values returned from the instructions (choose all or unmapped) tps.report_unmapped(_srce text)
    • the list of rows facilitates additional named column(s) to be added which are used to assign values anytime the result occurs
    • function to set the values of the cross reference tps.srce_map_val_set_multi(_maps jsonb)
  • Run Import

    • underlying function is tps.srce_import(_path text, _srce text)