Scenario

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

1.

Load required tables from source to staging area (STG) as one-to-one mapping
2. Load data from STG to Data Warehouse (DWH) according to requirements below
3. Keep 7 snapshots in the STG area (daily snapshots)
4. Fact tables in DWH should be daily snapshot tables
5. Dimension tables in DWH should be Slowly Changing Dimension Type 2
6. Give estimates on: data analysis, ETL design for STG-to-DWH, implementation of
SRC-to-STG, implementation of STG-to-DWH
7. Introduce additional columns in STG, and DWH as necessary

F_SalesOrder:
-------------
SalesOrderID
SalesOrderDetailID
RevisionNumber
OrderDate
DueDate
ShipDate
Status
OnlineOrderFlag
SalesOrderNumber
PurchaseOrderNumber
AccountNumber
CarrierTrackingNumber
OrderQty
UnitPrice
SpecialOffer_DiscountPct
SpecialOffer_Description
LineTotal
Territory_CountryRegionCode
FromCurrencyName
ToCurrencyName
CurrencyAverageRate
SubTotal
TaxAmt
Freight
TotalDue
Comment
SalesPersonName
CreditCardApprovalCode
CardType
CardNumber
CustomerID
ProductID

D_Customer:
-----------
CustomerID
Name
Phone
EmailAddress
AccountNumber
StoreName

D_Product:
----------
ProductID
Name
ProductNumber
MakeFlag
FinishedGoodsFlag
Color
SafetyStockLevel
ReorderPoint
StandardCost
ListPrice
Size
SellStartDate
SellEndDate
DiscontinuedDate

You might also like