|
![]() |
Property | Value |
Name | DimBudgetedLoad |
Description | This package will load any change to the DimGltransDetail 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 | 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 | 4bfc59a3-b662-4235-9d14-f2c326115f58 |
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 | EncryptSensitiveWithUserKey |
Save Checkpoints | False |
Suppress Configuration Warnings | False |
Suspend Required | False |
Transaction Option | Supported |
Update Objects | False |
Version Build | 308 |
Version Comments | |
Version Guid | dd8619b3-6c65-4710-b1b2-f652f46851db |
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 |
|
Task |
Execute SQL Task |
Name | Description |
Name | Description |
Name | Value | Expression | Description |
DELETE
FROM
[EnterpriseDW] .[dbo].[DimBudgetComponentType]
WHERE BudgetComponentTypeSK IN
(
SELECT BudgetComponentTypeSK
FROM [dbo].[Obsolete_DimBudgetComponentType] obs
WHERE obs.DoNotDeleteFlag = 0
)
|
"
DELETE
FROM
" + (@[User::EDWLinkedServerName] == "N/A" ? "" : "[" + @[User::EDWLinkedServerName]+"]." ) + "["+ @[User::EDWDBName] + "] .[dbo].[DimBudgetComponentType]
WHERE BudgetComponentTypeSK IN
(
SELECT BudgetComponentTypeSK
FROM [dbo].[Obsolete_DimBudgetComponentType] obs
WHERE obs.DoNotDeleteFlag = 0
)
" |
This is the SQL statement that will delete obsolete records from the DimGlTransDetail table. |
|
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. |
||
/* SQL INSERT into DimBudgetComponentType from New Temp Table */
INSERT INTO [EnterpriseDW].[dbo].[DimBudgeted]
(BudgetedAK
,BudgetedCode ,Budgeted
,RowIsCurrent
,RowStartDate
,RowEndDate)
SELECT BudgetedAK
,BudgetedCode
,Budgeted
,RowIsCurrent
,RowStartDate
,RowEndDate
FROM Staged_dbo_DimBudgeted__New
|
"
/* SQL INSERT into DimBudgetComponentType from New Temp Table */
INSERT INTO " + (@[User::EDWLinkedServerName] == "N/A" ? "" : "[" + @[User::EDWLinkedServerName]+"]." ) + "["+ @[User::EDWDBName] + "].[dbo].[DimBudgeted]
(BudgetedAK
,BudgetedCode ,Budgeted
,RowIsCurrent
,RowStartDate
,RowEndDate)
SELECT BudgetedAK
,BudgetedCode
,Budgeted
,RowIsCurrent
,RowStartDate
,RowEndDate
FROM Staged_dbo_DimBudgeted__New
" |
This variable contains the string that will be used to insert any new rows into the DimGlTransDetail table. |
|
/*
Sample Update Type1 to Dim
*/
UPDATE [EnterpriseDW].[dbo].[DimBudgeted]
SET BudgetedAK = SCD1.BudgetedAK
,BudgetedCode = SCD1.BudgetedCode
,Budgeted = SCD1.Budgeted FROM [EnterpriseDW].[dbo].[DimBudgeted] AS [DIM]
INNER JOIN [dbo].[Staged_dbo_DimBudgeted__Type1Update] AS SCD1
ON Dim.BudgetedAK = SCD1.BudgetedAK
|
"
/*
Sample Update Type1 to Dim
*/
UPDATE " + (@[User::EDWLinkedServerName] == "N/A" ? "" : "[" + @[User::EDWLinkedServerName]+"]." ) + "["+ @[User::EDWDBName] + "].[dbo].[DimBudgeted]
SET BudgetedAK = SCD1.BudgetedAK
,BudgetedCode = SCD1.BudgetedCode
,Budgeted = SCD1.Budgeted FROM " + (@[User::EDWLinkedServerName] == "N/A" ? "" : "[" + @[User::EDWLinkedServerName]+"]." ) + "["+ @[User::EDWDBName] + "].[dbo].[DimBudgeted] AS [DIM]
INNER JOIN [dbo].[Staged_dbo_DimBudgeted__Type1Update] AS SCD1
ON Dim.BudgetedAK = SCD1.BudgetedAK
"
|
The SQL string that will update any changed rows in the DimGlTransDetail dimension. |
Name | Value | Expression | Description |
Powered by BI Documenter |