ssis.ProjectConnection_tgt - V

type: V ( view ), modify_date: 2021-11-04 09:21:20

RepoObject_guid: 839A07F7-C23C-EC11-852D-A81E8446D5B0

Description

Examples

Entity Diagram

entity-ssis.projectconnection_tgt

Columns

Table 1. Columns of ssis.ProjectConnection_tgt - V
PK Column Name Data Type NULL? ID

1

varchar(50)

NOT NULL

2

uniqueidentifier

NOT NULL

varchar(max)

NOT NULL

varchar(max)

NULL

varchar(8000)

NOT NULL

nvarchar(max)

NULL

nvarchar(max)

NULL

Persistence, History Table

  • persistence source: ssis.ProjectConnection_src - V

  • is_persistence: 1

  • is_persistence_check_duplicate_per_pk: 0

  • is_persistence_check_for_empty_source: 0

  • is_persistence_delete_changed: 0

  • is_persistence_delete_missing: 1

  • is_persistence_insert: 1

  • is_persistence_truncate: 0

  • is_persistence_update_changed: 1

  • has_history: 0

  • has_history_columns: 0

Foreign Key Diagram

entity_1_1_fk-ssis.projectconnection_tgt

References

Object Reference Diagram - 1 1

entity_1_1_objectref-ssis.projectconnection_tgt

Object Reference Diagram - Referenced - 30 0

entity_30_0_objectref-ssis.projectconnection_tgt

Object Reference Diagram - Referencing - 0 30

entity_0_30_objectref-ssis.projectconnection_tgt

Column Reference Diagram

entity_1_1_colref-ssis.projectconnection_tgt

Indexes

PK_ProjectConnection_tgt

idx_ProjectConnection_tgt__2

Column Details

_

AntoraModule

1

AntoraModule

varchar(50)

NOT NULL

ConnectionManagerID

2

ConnectionManagerID

uniqueidentifier

NOT NULL

ConnectionManagerName

ConnectionManagerName

varchar(max)

NOT NULL

ConnectionManagerType

ConnectionManagerType

varchar(max)

NULL

ConnectionPath

ConnectionPath

varchar(8000)

NOT NULL

ConnectionString

ConnectionString

nvarchar(max)

NULL

ExpressionValue

ExpressionValue

nvarchar(max)

NULL

sql_modules_definition

ssis.ProjectConnection_tgt - V script
CREATE View ssis.ProjectConnection_tgt
As
Select
    tgt.AntoraModule
  , tgt.ConnectionManagerID
  , tgt.ConnectionManagerName AS ConnectionManagerName
  , tgt.ConnectionManagerType
  , tgt.ConnectionPath
  , tgt.ConnectionString
  , tgt.ExpressionValue
From
    ssis.ProjectConnection As tgt
Where
    Exists
(
    Select
        1
    From
        ssis.AntoraModule_tgt_filter As f
    Where
        tgt.AntoraModule = f.AntoraModule
)