ssis_t.TblTask_Dft_Component_outputs_src - V

type: V ( view ), modify_date: 2021-11-07 11:59:59

RepoObject_guid: 74CC7FC6-CF3F-EC11-852D-A81E8446D5B0

Description

Examples

Entity Diagram

entity-ssis_t.tbltask_dft_component_outputs_src

Columns

Table 1. Columns of ssis_t.TblTask_Dft_Component_outputs_src - V
PK Column Name Data Type NULL? ID

int

NOT NULL

int

NOT NULL

xml

NULL

bit

NULL

varchar(500)

NULL

varchar(max)

NULL

varchar(max)

NULL

int

NULL

Foreign Key Diagram

entity_1_1_fk-ssis_t.tbltask_dft_component_outputs_src

References

Object Reference Diagram - 1 1

entity_1_1_objectref-ssis_t.tbltask_dft_component_outputs_src

Object Reference Diagram - Referenced - 30 0

entity_30_0_objectref-ssis_t.tbltask_dft_component_outputs_src

Object Reference Diagram - Referencing - 0 30

entity_0_30_objectref-ssis_t.tbltask_dft_component_outputs_src

Column Reference Diagram

entity_1_1_colref-ssis_t.tbltask_dft_component_outputs_src

Indexes

idx_TblTask_Dft_Component_outputs_src__1

Column Details

_

ControlFlowDetailsRowID

ControlFlowDetailsRowID

int

NOT NULL

DftComponentId

DftComponentId

int

NOT NULL

nodescontent

nodescontent

xml

NULL

output_isErrorOut

output_isErrorOut

bit

NULL

output_name

output_name

varchar(500)

NULL

output_refId

output_refId

varchar(max)

NULL

refId

refId

varchar(max)

NULL

RowID

RowID

int

NULL

sql_modules_definition

ssis_t.TblTask_Dft_Component_outputs_src - V script
create View [ssis_t].[TblTask_Dft_Component_outputs_src]
As
Select
    T1.ControlFlowDetailsRowID
  , T1.RowID
  , T1.DftComponentId
  , T1.refId
  , output_refId                                      = outputnodes.x.value ( '@refId[1]', 'varchar(max)' )
  , output_name                                       = outputnodes.x.value ( '@name[1]', 'varchar(500)' )
  , output_isErrorOut                                 = outputnodes.x.value ( '@isErrorOut[1]', 'bit' )
  , nodescontent                                      = outputnodes.x.query ( '.' )
From
    ssis_t.TblTask_Dft_Component                      As T1
    Cross Apply T1.outputsQry.nodes ( './outputs/*' ) As outputnodes(x)