docs.ssis_PumlPartialDataFlow - V
type: V ( view ), modify_date: 2021-11-07 10:44:15
RepoObject_guid: ADDCAD7F-F73E-EC11-852D-A81E8446D5B0
Columns
PK | Column Name | Data Type | NULL? | ID |
---|---|---|---|---|
|
|
|||
|
|
|||
|
|
|||
|
|
Column Details
sql_modules_definition
docs.ssis_PumlPartialDataFlow - V script
CREATE View docs.ssis_PumlPartialDataFlow
As
Select
pf.AntoraModule
, pf.PackageName
, pf.TaskFromParent
, PumlPartialDataFlow =
--
String_Agg (
Cast(N'' As NVarchar(Max)) + docs.fs_cleanStringForAnchorId ( pf.TaskFrom ) + ' --> '
+ docs.fs_cleanStringForAnchorId ( pf.Taskto ) + Iif(pf.Expression <> '', ' : ' + pf.Expression, '')
, Char ( 13 ) + Char ( 10 )
) Within Group(Order By
pf.TaskFrom
, pf.Taskto)
From
ssis.PackageFlow As pf
Where
pf.FlowType = 'Data Flow'
Group By
pf.AntoraModule
, pf.PackageName
, pf.TaskFromParent
sql