DimInstitutionalRetentionCohortLoad
 DimInstitutionalRetentionCohortLoad (Integration Services Package)
  Workflow Screenshot
  Properties
Property Value
Name DimInstitutionalRetentionCohortLoad
Description This package will load any change to the DimStudentTerm dimension. The first step in this package is to truncate all the working tables needed to track new and updated records. The next step will load the data into a staged table in DWOperations. The data will be checked if there are any duplicate records and these will be flagged. The data in the Staged Table will be compared against that in the dimension and will be inserted or updated as required. If any duplicate records were found, a notification e-mail will be send to the appropriate staff
Checkpoint File Name
Checkpoint Usage Never
Check Signature On Load True
Creation Date Tuesday, May 08, 2012 4:11 PM
Creator Computer Name ipeterson
Creator Name ipeterso\hetgroup
Debug Mode False
Delay Validation False
Disable False
Disable Event Handlers False
Enable Configurations True
Encrypt Checkpoints False
Fail Package On Failure False
Fail Parent On Failure False
Forced Execution Value 0
Force Execution Value None
Description False
ID 49265cd3-ddeb-40e9-a7d1-ad60474fad19
Interactive Mode False
Is Default Locale ID False
Isolation Level Serializable
Locale ID 1033
Logging Mode Enabled
Max Concurrent Executables -1
Maximum Error Count 1
Offline Mode False
Package Type DTSDesigner100
Protection Level DontSaveSensitive
Save Checkpoints False
Suppress Configuration Warnings False
Suspend Required False
Transaction Option Supported
Update Objects False
Version Build 291
Version Comments
Version Guid ead6e334-9cd0-4118-97e1-3b580db15f4a
Version Major 1
Version Minor 0
  Executables
Name Type Description
Data Flow Task
Data Flow Task
Data Flow Task
Data Flow Task
Data Flow Task
Data Flow Task
Task
Execute SQL Task
Task
Execute SQL Task
Task
Execute SQL Task
Task
Execute SQL Task
Task
Execute SQL Task
  Connection Managers
Name Description
  Log Providers
Name Description
  User Defined Variables
Name Value Expression Description
EnterpriseDW
Configuration setting in SSIS_Configurations that specifies the name of the Enterprise Data Warehouse.
N/A
If the Enterprise Data Warehouse resides on a different server from the DWStaging and DWoperations databases, a linked server must be defined and the name populated into the Var_EDWLinkedServername. If it resides on the same server, this setting must be set to ?N/A?. This is a configuration setting from SSIS_Configurations.
exec usp_DimInstitutionalRetentionCohortT2T_Select
exec usp_DimInstitutionalRetentionCohortT2T_Select2
exec usp_DimInstitutionalRetentionCohortY2Y_Select
"exec usp_DimInstitutionalRetentionCohort_Select"
This variable contains the execution string for the Stored Procedure that will retrieve the data from the source system.
/* SQL INSERT into DimInstitutionalRetentionCohort from New Temp Table */ INSERT INTO [EnterpriseDW].[dbo].[DimInstitutionalRetentionCohort] ( InstitutionalRetentionCohortAK ,StudentId ,CohortYear ,CohortTerm ,CohortTermTitle ,FirstTerm_FT_PT ,RetentionCohortTypeCode ,RetentionCohortType ,ProgramCode ,Program ,ProgramAdmitStatus ,AwardTypeCode ,AwardType ,AgeAtInstitutionalRetentionCohort ,AgeRangeAtInstitutionalRetentionCohort ,RowIsCurrent ,RowStartDate ,RowEndDate ) SELECT InstitutionalRetentionCohortAK ,StudentId ,CohortYear ,CohortTerm ,CohortTermTitle ,FirstTerm_FT_PT ,RetentionCohortTypeCode ,RetentionCohortType ,ProgramCode ,Program ,ProgramAdmitStatus ,AwardTypeCode ,AwardType ,AgeAtInstitutionalRetentionCohort ,AgeRangeAtInstitutionalRetentionCohort ,RowIsCurrent ,RowStartDate ,RowEndDate FROM Staged_dbo_DimInstitutionalRetentionCohort__New
" /* SQL INSERT into DimInstitutionalRetentionCohort from New Temp Table */ INSERT INTO " + (@[User::EDWLinkedServerName] == "N/A" ? "" : "[" + @[User::EDWLinkedServerName]+"]." ) + "["+ @[User::EDWDBName] + "].[dbo].[DimInstitutionalRetentionCohort] ( InstitutionalRetentionCohortAK ,StudentId ,CohortYear ,CohortTerm ,CohortTermTitle ,FirstTerm_FT_PT ,RetentionCohortTypeCode ,RetentionCohortType ,ProgramCode ,Program ,ProgramAdmitStatus ,AwardTypeCode ,AwardType ,AgeAtInstitutionalRetentionCohort ,AgeRangeAtInstitutionalRetentionCohort ,RowIsCurrent ,RowStartDate ,RowEndDate ) SELECT InstitutionalRetentionCohortAK ,StudentId ,CohortYear ,CohortTerm ,CohortTermTitle ,FirstTerm_FT_PT ,RetentionCohortTypeCode ,RetentionCohortType ,ProgramCode ,Program ,ProgramAdmitStatus ,AwardTypeCode ,AwardType ,AgeAtInstitutionalRetentionCohort ,AgeRangeAtInstitutionalRetentionCohort ,RowIsCurrent ,RowStartDate ,RowEndDate FROM Staged_dbo_DimInstitutionalRetentionCohort__New "
This variable contains the string that will be used to insert any new rows into the DimStudentTerm table.
DWOperations_Maintenance
Configuration setting in SSIS_Configurations that specifies the name of the Operations Database.
/* Sample Update Type1 to Dim */ UPDATE [EnterpriseDW].[dbo].[DimInstitutionalRetentionCohort] SET InstitutionalRetentionCohortAK = SCD1.InstitutionalRetentionCohortAK, StudentId = SCD1.StudentId, CohortYear = SCD1.CohortYear, CohortTerm = SCD1.CohortTerm, CohortTermTitle = SCD1.CohortTermTitle, FirstTerm_FT_PT = SCD1.FirstTerm_FT_PT, RetentionCohortTypeCode = SCD1.RetentionCohortTypeCode, RetentionCohortType = SCD1.RetentionCohortType, ProgramCode = SCD1.ProgramCode, Program = SCD1.Program, ProgramAdmitStatus = SCD1.ProgramAdmitStatus, AwardTypeCode = SCD1.AwardTypeCode, AwardType = SCD1.AwardType, AgeAtInstitutionalRetentionCohort = SCD1.AgeAtInstitutionalRetentionCohort, AgeRangeAtInstitutionalRetentionCohort = SCD1.AgeRangeAtInstitutionalRetentionCohort FROM [EnterpriseDW].[dbo].[DimInstitutionalRetentionCohort] AS [DIM] INNER JOIN [dbo].[Staged_dbo_DimInstitutionalRetentionCohort__Type1Update] AS SCD1 ON Dim.InstitutionalRetentionCohortAK = SCD1.InstitutionalRetentionCohortAK
" /* Sample Update Type1 to Dim */ UPDATE " + (@[User::EDWLinkedServerName] == "N/A" ? "" : "[" + @[User::EDWLinkedServerName]+"]." ) + "["+ @[User::EDWDBName] + "].[dbo].[DimInstitutionalRetentionCohort] SET InstitutionalRetentionCohortAK = SCD1.InstitutionalRetentionCohortAK, StudentId = SCD1.StudentId, CohortYear = SCD1.CohortYear, CohortTerm = SCD1.CohortTerm, CohortTermTitle = SCD1.CohortTermTitle, FirstTerm_FT_PT = SCD1.FirstTerm_FT_PT, RetentionCohortTypeCode = SCD1.RetentionCohortTypeCode, RetentionCohortType = SCD1.RetentionCohortType, ProgramCode = SCD1.ProgramCode, Program = SCD1.Program, ProgramAdmitStatus = SCD1.ProgramAdmitStatus, AwardTypeCode = SCD1.AwardTypeCode, AwardType = SCD1.AwardType, AgeAtInstitutionalRetentionCohort = SCD1.AgeAtInstitutionalRetentionCohort, AgeRangeAtInstitutionalRetentionCohort = SCD1.AgeRangeAtInstitutionalRetentionCohort FROM " + (@[User::EDWLinkedServerName] == "N/A" ? "" : "[" + @[User::EDWLinkedServerName]+"]." ) + "["+ @[User::EDWDBName] + "].
The SQL string that will update any changed rows in the DimStudentTerm dimension.
  System Variables
Name Value Expression Description
Powered by BI Documenter