Questions tagged [data-lineage]
62 questions
0
votes
1 answer
column level data lineage
I have a stored proc which creates table Z from Table X and Y as below.
Create table Z as (select X.1 as Z.1,
X.2 as Z.2,
Y.2+X.2 as Z.3,
Y.3 as Z.4,
Y.5 as Z.5,
'dummy' as Z.6 from X,Y)
I need a lineage tool which maps not only table X,Y to Z but…

Ravindran_Quan
- 29
- 4
-1
votes
1 answer
Bigquery data-lineage for CREATE TABLE AS SELECT shows nothing
SOLVED All it takes is quite a bit of patience (1 hour or so)
I'm working through the on the fly decryption example from strmprivacy.io which works fine, but the lineage tab in BigQuery shows a stand-alone table, instead of something derived. This…

bart van deenen
- 661
- 6
- 16