Pipeline
Structure
flowchart LR
00.ETL-->01.Staging;
00.ETL-->03.DWH;Note that the 02.Transform does not see to be used. It's empty.

Staging
The staging pipeline copies data from Postgres Views to the staging database EEG_StagingDB. Steps:
-
truncate DIM tables (delete the data)
-
copy dim tables
-
truncate fact tables
-
copy fact tables

You can click on an activity to see the details:

And, again:
-
in Staging.dtsx
-
click Odoo Projects to see the source details.
-
click on
Build Query... -
to see and select the source column
-
to see the source view or table
-
or click on execute to
-
see the data
