DWOperations
 dbo.ETLExecutionLog_SSISConfigurations (Table)
  Properties
Property Value
Name ETLExecutionLog_SSISConfigurations
Schema dbo
Row Count 102
Data Size 40 KB
Index Size 16 KB
Create Date 1/28/2014 9:48 AM
Description
  Columns
 
 
Column Name
Data Type
Allow Nulls
Row Guid
Fulltext Indexed
Identity
Default
Description / Computed Formula
ConfigurationFilter
nvarchar(255)
False
False
False
 
ConfiguredValue
nvarchar(255)
True
False
False
 
ConfiguredValueType
nvarchar(20)
False
False
False
 
ETL_LogPoint
varchar(25)
False
False
False
 
Foreign Key
ETLExecutionLogId
int(10, 0)
False
False
False
 
InsertDtTm
smalldatetime(16, 0)
False
False
False
 
(getdate())
PackagePath
nvarchar(255)
False
False
False
 
In Primary Key
SSISConfigurations_Log_Id
int(10, 0)
False
False
False
(1 / 1)
  Triggers
Name Insert Update Delete Instead
  Indexes
Name Clustered Columns
True
SSISConfigurations_Log_Id
  Foreign Key Constraints
Name Columns Referenced Table Referenced Columns Checked
ETLExecutionLogId
ETLExecutionLog
ETLExecutionLogId
True
  Check Constraints
Name Text Checked
([ETL_LogPoint]='End State' OR [ETL_LogPoint]='AFTER Set ETL Dates' OR [ETL_LogPoint]='Initial State')
True
  Parent Dependencies (objects that dbo.ETLExecutionLog_SSISConfigurations depends on)
Name Type
Table
StoredProcedure
StoredProcedure
StoredProcedure
StoredProcedure
  Child Dependencies (objects that depend on dbo.ETLExecutionLog_SSISConfigurations)
Name Type
STOREDPROCEDURE
STOREDPROCEDURE
STOREDPROCEDURE
STOREDPROCEDURE
TABLE
  Extended Properties
Object Property Value
   Annotations
Object Property Value
  DDL
/****** Object: Table [dbo].[ETLExecutionLog_SSISConfigurations] Script Date: 03/09/2017 17:21:32 ******/
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
CREATE TABLE [dbo].[ETLExecutionLog_SSISConfigurations](
    [SSISConfigurations_Log_Id] [int] IDENTITY(1,1) NOT NULL,
    [ETLExecutionLogId] [int] NOT NULL,
    [ETL_LogPoint] [varchar](25) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [InsertDtTm] [smalldatetime] NOT NULL,
    [ConfigurationFilter] [nvarchar](255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [ConfiguredValue] [nvarchar](255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
    [PackagePath] [nvarchar](255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
    [ConfiguredValueType] [nvarchar](20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
 CONSTRAINT [PK_SSISConfigurations_Log] PRIMARY KEY CLUSTERED 
(
    [SSISConfigurations_Log_Id] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]
ALTER TABLE [dbo].[ETLExecutionLog_SSISConfigurations]  WITH CHECK ADD  CONSTRAINT [FK_SSISConfigurations_Log__ETLExecutionLog] FOREIGN KEY([ETLExecutionLogId])
REFERENCES [ETLExecutionLog] ([ETLExecutionLogId])
ALTER TABLE [dbo].[ETLExecutionLog_SSISConfigurations] CHECK CONSTRAINT [FK_SSISConfigurations_Log__ETLExecutionLog]
ALTER TABLE [dbo].[ETLExecutionLog_SSISConfigurations]  WITH CHECK ADD  CONSTRAINT [chk_ETL_LogPoint] CHECK  (([ETL_LogPoint]='End State' OR [ETL_LogPoint]='AFTER Set ETL Dates' OR [ETL_LogPoint]='Initial State'))
ALTER TABLE [dbo].[ETLExecutionLog_SSISConfigurations] CHECK CONSTRAINT [chk_ETL_LogPoint]
ALTER TABLE [dbo].[ETLExecutionLog_SSISConfigurations] ADD  CONSTRAINT [DF_InsertDtTm]  DEFAULT (getdate()) FOR [InsertDtTm]
  Sample Data
ConfigurationFilter ConfiguredValue ConfiguredValueType ETL_LogPoint ETLExecutionLogId InsertDtTm PackagePath SSISConfigurations_Log_Id
Var_IncrementalBeginDtTm Jan 1 1900 12:00AM String End State 2 2017-03-09T14:44:00-05:00 \Package.Variables[User::IncrementalBeginDtTm].Properties[Value] 194
Var_EDWDBName EnterpriseDW String Initial State 2 2017-03-09T11:11:00-05:00 \Package.Variables[User::EDWDBName].Properties[Value] 112
Var_AnalysisServicesDBName EnterpriseDW_SSAS String AFTER Set ETL Dates 2 2017-03-09T11:11:00-05:00 \Package.Variables[User::AnalysisServicesDBName].Properties[Value] 137
Var_DWStagingDBName DWStaging String End State 2 2017-03-09T14:44:00-05:00 \Package.Variables[User::DWStagingDBName].Properties[Value] 174
Var_EmailBodyText Testing String AFTER Set ETL Dates 2 2017-03-09T11:11:00-05:00 \Package.Variables[User::EmailBodyText].Properties[Value] 153
Var_UseManualDates N String End State 2 2017-03-09T14:44:00-05:00 \Package.Variables[User::UseManualDates].Properties[Value] 177
ConnMgr_DWStaging DWStaging String Initial State 2 2017-03-09T11:11:00-05:00 \Package.Connections[DWStaging].Properties[InitialCatalog] 98
Var_EmailUserName windows String Initial State 2 2017-03-09T11:11:00-05:00 \Package.Variables[User::EmailUserName].Properties[Value] 121
Var_SMTPPort 25 Int32 Initial State 2 2017-03-09T11:11:00-05:00 \Package.Variables[User::SMTPPort].Properties[Value] 113
Var_DWStagingDBFileFolder E:\SQL_Data\ String Initial State 2 2017-03-09T11:11:00-05:00 \Package.Variables[User::DWStagingDBFileFolder].Properties[Value] 107
Powered by BI Documenter