Hi,
There is a target table, used in a dataflow but this dataflow is not (yet) in a job or workflow. When I look in the AL_PARENT table this table cannot be found! Or am i wrong?
Which repository table should I use to find a table anyway whether it is used in a job or not?
The script I use to breakdown/flatten the AL_PARENT table looks like this :
select j.parent_obj_key as Jobkey, j.parent_obj as Job, wf.parent_obj_key as WFKEY, wf.parent_obj as Workflow, df.parent_obj_key as DFKEY ,
df.parent_obj as Dataflow, df.descen_obj_type, df.descen_obj as Tabel_or_Datastore_name ,df.descen_obj_usage as Source_or_Target
from pr_repo.al_parent_child j, pr_repo.al_parent_child wf, pr_repo.al_parent_child df
where j.parent_obj_type = ‘Job’
and j.descen_obj_key= wf.parent_obj_key
and wf.parent_obj_type = ‘WorkFlow’
and wf.descen_obj_key= df.parent_obj_key
and df.parent_obj_type = ‘DataFlow’
and df.descen_obj_usage in (‘Source’,‘Target’)
==================================
but I think this only works when you search for Dataflows or Workflows that are in a job?!
TurningPointHolland (BOB member since 2006-09-06)