Settings
Last updated
Simple mode is enabled by default or in the cases when /s
flag is added to the command:
In Simple mode, the intermediate results will not be displayed and only are present. The Simple mode is related to two options: setSimpleShowTopSelectResultSet
, setSimpleShowFunction
and setSimpleShowUdfFunctionOnly
.
setSimpleShowTopSelectResultSet
whether to display the select result set on the top, default value is false.
setSimpleShowFunction
whether to display function, default value is false.
setSimpleShowUdfFunctionOnly
whether to display only User Define Function, we also need to turn on setSimpleShowFunction
as well so that functions are displayed.
dataflowAnalyzer is in Simple mode by default so there's no select result set on the top nethier no function displayed. Sqlflow UI will always have setSimpleShowTopSelectResultSet as true because the select query must be displayed on the top.
dataflowAnalyzer has a function to deal with the dataflow in regular mode and customize the analysis type for the relations. The function can analysize and relations.
instance: dataflow in regular mode
simpleOutput: false
when showTopSelectResultSet
is set to true
. true
when showTopSelectResultSet
is set to false
.
types: List of relation types, may include values as fdd
or fdr
. Will analysize fdr
when the list contains fdr
.
In Dlineage tool we can display temporary tables by adding /withTemporaryTable
flag:
Please be aware that ignoring the temporary table starting with "#
" in sqlserver is a mandatory behavior, therefore it cannot be displayed even with the /withTemporaryTable
flag.