|
![]() |
Property | Value |
Name | FactProgramRetentionSnapshotLoad |
Description | This package loads Enrollment activity information (Drops, Adds, Credit Hours, FTE, etc.) for all Terms. |
Checkpoint File Name | |
Checkpoint Usage | Never |
Check Signature On Load | True |
Creation Date | Tuesday, May 08, 2012 4:11 PM |
Creator Computer Name | SCOWAN |
Creator Name | SCOWAN\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 | cb536e18-d747-4751-9c30-94aade548553 |
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 | 378 |
Version Comments | |
Version Guid | fac1ae29-32aa-4c45-8b5b-b6fce00513e9 |
Version Major | 1 |
Version Minor | 0 |
Name | Type | Description |
Data Flow Task |
Data Flow Task |
|
Data Flow Task |
Data Flow Task |
|
Task |
Execute SQL Task |
|
Task |
Execute SQL Task |
Name | Description |
Name | Description |
Name | Value | Expression | Description |
EnterpriseDW |
|||
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_FactProgramRetentionSnapshot_Select |
"/* This table will contain all students from the End Of Term table and their real cohort terms. */
CREATE TABLE #student_cohort_temp
(
[StudentId] VARCHAR(9) NOT NULL
,[CohortTerm] VARCHAR(6) NOT NULL
)
INSERT INTO #student_cohort_temp
(
[StudentId]
,[CohortTerm]
)
/* Determine the students and their cohort term from the Student End Of Term table */
SELECT
EOT.STDNT_ID AS StudentId
,MIN(AH.CohortTerm) AS CohortTerm
FROM ST_STDNT_ENDOFTERM_A EOT
/* Join on set of students that completed a local credit class after the HS Grad Date */
/* The earliest such term is their cohort term. */
INNER JOIN (
/* Get first term that the student took a credit class after HS Graduation. This is Cohort Term. */
SELECT
AH2.STUDENT_ID
,MIN(AH2.AH_TERM) AS CohortTerm
FROM (
/* Join AH with Student to get AH local credit classes taken after HS Grad Date */
SELECT
AH1.STUDENT_ID,
RTRIM(SUBSTRING(CLASS_KEY,12,6)) AS AH_TERM
FROM ST_ACDMC_HIST |
Name | Value | Expression | Description |
Powered by BI Documenter |